41
|
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
|