comparison docker/Dockerfile @ 1:ecd0a79e8130 draft

planemo upload for repository https://github.com/igg-molecular-biology-lab/pipe-t.git commit 065f5723959c01b6afec74dad189608477e0ac18
author davidecangelosi
date Fri, 03 May 2019 11:01:43 -0400
parents
children 11393eb1c557
comparison
equal deleted inserted replaced
0:185ba61836ab 1:ecd0a79e8130
1 # Galaxy - PIPE_T
2 #
3 # VERSION 0.2
4
5 FROM bgruening/galaxy-stable:latest
6
7 MAINTAINER D. CANGELOSI, davidecangelosi@gaslini.org
8
9 ENV GALAXY_CONFIG_BRAND="Galaxy PIPE-T"
10 ENV ENABLE_TTS_INSTALL True
11
12 RUN apt-get -y update
13 RUN apt-get install -y libxml2-dev libcurl4-openssl-dev curl libcairo2-dev
14
15 #Workaround for ubuntu
16 #RUN cp /etc/ssl/private/ssl-cert-snakeoil.key /etc/
17 #RUN chown root:ssl-cert /etc/ssl-cert-snakeoil.key
18 #RUN sed -i -e "s/\/ssl\/private//g" /etc/postgresql/9.3/main/postgresql.conf
19
20 #install pipe_t from toolshed
21 ADD tools.yml $GALAXY_ROOT/tools.yaml
22 RUN install-tools $GALAXY_ROOT/tools.yaml && \
23 /tool_deps/_conda/bin/conda clean --all --yes
24
25 #RUN chown galaxy:galaxy /usr/local/lib/R/site-library
26
27 # Mark folders as imported from the host.
28 #VOLUME ["/export/", "/data/", "/var/lib/docker"]
29
30 # Expose port 80 (webserver), 21 (FTP server), 8800 (Proxy)
31 EXPOSE :80
32 EXPOSE :21
33 EXPOSE :8800
34
35 # Autostart script that is invoked during container start
36 CMD ["/usr/bin/startup"]