File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 33
33
#
34
34
# to run image:
35
35
# docker run -p "8080:80" -t {{ topic_name }}
36
+ # use -d to automatically dowload the datalibraries in the container
36
37
37
- FROM bgruening/galaxy-stable
38
+ FROM bgruening/galaxy-stable:latest
38
39
39
40
MAINTAINER Galaxy Training Material
40
41
41
42
ENV GALAXY_CONFIG_BRAND "GTN: {{ topic_title }}"
42
43
43
- # prerequisites
44
- RUN pip install ephemeris -U
45
- ADD bin/galaxy-sleep.py /galaxy-sleep.py
46
-
47
44
# copy the tutorials directory for your topic
48
45
ADD topics/{{ topic_name }}/tutorials/ /tutorials/
49
46
50
47
# install everything for tutorials
51
48
ADD bin/docker-install-tutorials.sh /setup-tutorials.sh
52
49
ADD bin/mergeyaml.py /mergeyaml.py
50
+ ADD bin/data_libarary_download.sh /data_libarary_download.sh
53
51
RUN /setup-tutorials.sh
52
+
53
+ ENTRYPOINT ["/data_libarary_download.sh"]
54
54
"""
55
55
56
56
You can’t perform that action at this time.
0 commit comments