Skip to content

Commit fbc96a7

Browse files
bedroesbnsoranzo
authored andcommitted
Docker file changes
1 parent 8ab0326 commit fbc96a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

planemo/training/topic.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,24 @@
3333
#
3434
# to run image:
3535
# docker run -p "8080:80" -t {{ topic_name }}
36+
# use -d to automatically dowload the datalibraries in the container
3637
37-
FROM bgruening/galaxy-stable
38+
FROM bgruening/galaxy-stable:latest
3839
3940
MAINTAINER Galaxy Training Material
4041
4142
ENV GALAXY_CONFIG_BRAND "GTN: {{ topic_title }}"
4243
43-
# prerequisites
44-
RUN pip install ephemeris -U
45-
ADD bin/galaxy-sleep.py /galaxy-sleep.py
46-
4744
# copy the tutorials directory for your topic
4845
ADD topics/{{ topic_name }}/tutorials/ /tutorials/
4946
5047
# install everything for tutorials
5148
ADD bin/docker-install-tutorials.sh /setup-tutorials.sh
5249
ADD bin/mergeyaml.py /mergeyaml.py
50+
ADD bin/data_libarary_download.sh /data_libarary_download.sh
5351
RUN /setup-tutorials.sh
52+
53+
ENTRYPOINT ["/data_libarary_download.sh"]
5454
"""
5555

5656

0 commit comments

Comments
 (0)