Rest of part 1 exercises
This commit is contained in:
parent
936da27d8b
commit
cc6da85490
9 changed files with 81 additions and 0 deletions
8
part1/exercise_1.11.txt
Normal file
8
part1/exercise_1.11.txt
Normal 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"]
|
Reference in a new issue