Adding apt-get install of curl to Dockerfile

This commit is contained in:
Nanne Baars 2017-10-18 12:07:56 +02:00
parent 9e37a3e702
commit 42775c1980

View File

@ -2,7 +2,7 @@ FROM openjdk:8-jre-slim
RUN useradd --home-dir /home/webgoat --create-home -U webgoat RUN useradd --home-dir /home/webgoat --create-home -U webgoat
RUN apt-get install curl -y RUN apt-get update; apt-get install curl -y
COPY start.sh /home/webgoat/start.sh COPY start.sh /home/webgoat/start.sh