1
0
Fork 0

Rest of part 1 exercises

This commit is contained in:
Vili Sinervä 2023-03-13 21:37:15 +02:00
parent 936da27d8b
commit cc6da85490
9 changed files with 81 additions and 0 deletions

8
part1/exercise_1.11.txt Normal file
View file

@ -0,0 +1,8 @@
FROM openjdk:8-oracle
EXPOSE 8080
WORKDIR /usr/src/app
COPY pom.xml ./
COPY . .
RUN ./mvnw package
CMD ["java", "-jar", "./target/docker-example-1.1.3.jar"]