- Basic overview of all the assignments needed to be solved in a lesson - Clicking on a link will jump to the correct page with the assignment - Lesson completed also updates lesson overview immediately
6 lines
228 B
Docker
6 lines
228 B
Docker
FROM openjdk:8-jre
|
|
VOLUME /tmp
|
|
RUN cd /root; mkdir -p .webgoat
|
|
ADD webgoat-container-8.0-SNAPSHOT.war webgoat.jar
|
|
RUN sh -c 'touch /webgoat.jar'
|
|
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/webgoat.jar"] |