view toolfactory/docker/dockerfile.seq @ 41:f8c1694190f0 draft

Uploaded
author fubar
date Sun, 16 Aug 2020 08:11:10 -0400
parents
children
line wrap: on
line source

# Galaxy - Toolshed docker

FROM quay.io/bgruening/galaxy:19.01

MAINTAINER Björn A. Grüning, bjoern.gruening@gmail.com

ENV GALAXY_CONFIG_BRAND ToolFactory
ENV GALAXY_CONFIG_SANITIZE_ALL_HTML false

# Install tools
#ADD data_managers.yaml $GALAXY_ROOT/data_managers.yaml
#RUN install-tools $GALAXY_ROOT/data_managers.yaml && \
#    /tool_deps/_conda/bin/conda clean --tarballs && \
#    rm /export/galaxy-central/ -rf
ADD my_tool_list.yml $GALAXY_ROOT/tools1.yaml
RUN install-tools $GALAXY_ROOT/tools1.yaml && \
    /tool_deps/_conda/bin/conda clean --tarballs && \
    rm /export/galaxy-central/ -rf

ADD TF_example_wf.ga $GALAXY_HOME/workflows/TF_example_wf.ga

ADD post-start-actions.sh /export/post-start-actions.sh
RUN chmod a+x /export/post-start-actions.sh