Skip to content

Commit

Permalink
install wget during setup
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Klem <Yannic.Klem@bosch.io>
  • Loading branch information
Yannic92 committed Feb 16, 2022
1 parent e0c5589 commit a2587b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dockerfile-release
Expand Up @@ -26,6 +26,7 @@ EXPOSE 8080
RUN set -x \
&& apt-get update \
&& apt-get install -y tini \
&& apt-get install -y wget \
&& mkdir -p $DITTO_HOME \
&& groupadd --system --gid 1000 ditto \
&& useradd --no-log-init --system --home-dir $DITTO_HOME --shell /bin/sh --gid ditto --uid 1000 ditto \
Expand All @@ -36,7 +37,8 @@ RUN set -x \
&& ln -s ${SERVICE_STARTER}-${SERVICE_VERSION}-allinone.jar starter.jar \
&& chown -R ditto:ditto $DITTO_HOME \
&& cd $DITTO_LOGS \
&& chown -R ditto:ditto $DITTO_LOGS
&& chown -R ditto:ditto $DITTO_LOGS \
&& apt-get remove -y wget \

USER ditto
WORKDIR $DITTO_HOME
Expand Down

0 comments on commit a2587b7

Please sign in to comment.