Re-organize submissions
This commit is contained in:
parent
1bbc819280
commit
bcf1e3361f
23 changed files with 31 additions and 44 deletions
8
part1/Exercise_11/Dockerfile
Normal file
8
part1/Exercise_11/Dockerfile
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