Skip to content

Commit

Permalink
Criando arquivo Dockerfile #62
Browse files Browse the repository at this point in the history
O arquivo criado segundo o tutorial https://www.baeldung.com/spring-boot-postgresql-docker
  • Loading branch information
tacianosilva authored May 2, 2022
1 parent 6a8239e commit 50ccd52
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM adoptopenjdk:11-jre-hotspot
ARG JAR_FILE=*.jar
COPY ${JAR_FILE} application.jar
ENTRYPOINT ["java", "-jar", "application.jar"]

0 comments on commit 50ccd52

Please sign in to comment.