Skip to content

Commit 36dcba6

Browse files
committed
install curl
1 parent a78fc3c commit 36dcba6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

galaxy/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ ADD ./common_cleanup.sh /usr/bin/common_cleanup.sh
103103
RUN echo "force-unsafe-io" > /etc/dpkg/dpkg.cfg.d/02apt-speedup \
104104
&& echo "Acquire::http {No-Cache=True;};" > /etc/apt/apt.conf.d/no-cache \
105105
&& echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/99no-install-recommends \
106-
&& apt-get -qq update && apt-get install -y locales \
106+
&& apt-get -qq update && apt-get install -y locales curl \
107107
&& locale-gen en_US.UTF-8 && dpkg-reconfigure locales \
108108
&& apt-get autoremove -y && apt-get clean \
109109
&& chmod 755 /usr/bin/common_cleanup.sh \
@@ -293,9 +293,9 @@ RUN chmod +x /usr/bin/install-tools /usr/bin/install-biojs && \
293293

294294
# use https://github.com/krallin/tini/ as tiny but valid init and PID 1
295295
ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini /sbin/tini
296-
RUN chmod +x /sbin/tini
297-
298-
ADD --chown=$GALAXY_USER:$GALAXY_USER --chmod=755 ./run.sh $GALAXY_ROOT_DIR/run.sh
296+
ADD --chown=$GALAXY_USER:$GALAXY_USER ./run.sh $GALAXY_ROOT_DIR/run.sh
297+
RUN chmod +x /sbin/tini \
298+
&& chmod 755 ./run.sh $GALAXY_ROOT_DIR/run.sh
299299

300300
# This needs to happen here and not above, otherwise the Galaxy start
301301
# (without running the startup.sh script) will crash because integrated_tool_panel.xml could not be found.

0 commit comments

Comments
 (0)