Mercurial > repos > fubar > tool_factory_2
comparison toolfactory/docker/dockerfile.seq @ 43:e7e9732ebed6 draft
Uploaded
author | fubar |
---|---|
date | Sun, 16 Aug 2020 08:51:14 -0400 |
parents | f8c1694190f0 |
children |
comparison
equal
deleted
inserted
replaced
42:b938475235e3 | 43:e7e9732ebed6 |
---|---|
1 # Galaxy - Toolshed docker | |
2 | |
3 FROM quay.io/bgruening/galaxy:19.01 | |
4 | |
5 MAINTAINER Björn A. Grüning, bjoern.gruening@gmail.com | |
6 | |
7 ENV GALAXY_CONFIG_BRAND ToolFactory | |
8 ENV GALAXY_CONFIG_SANITIZE_ALL_HTML false | |
9 | |
10 # Install tools | |
11 #ADD data_managers.yaml $GALAXY_ROOT/data_managers.yaml | |
12 #RUN install-tools $GALAXY_ROOT/data_managers.yaml && \ | |
13 # /tool_deps/_conda/bin/conda clean --tarballs && \ | |
14 # rm /export/galaxy-central/ -rf | |
15 ADD my_tool_list.yml $GALAXY_ROOT/tools1.yaml | |
16 RUN install-tools $GALAXY_ROOT/tools1.yaml && \ | |
17 /tool_deps/_conda/bin/conda clean --tarballs && \ | |
18 rm /export/galaxy-central/ -rf | |
19 | |
20 ADD TF_example_wf.ga $GALAXY_HOME/workflows/TF_example_wf.ga | |
21 | |
22 ADD post-start-actions.sh /export/post-start-actions.sh | |
23 RUN chmod a+x /export/post-start-actions.sh | |
24 | |
25 |