Skip to content

Commit

Permalink
Merge pull request #4 from ASAP-Lettering/ASAP-59
Browse files Browse the repository at this point in the history
chore: Dockerfile 경로 수정
  • Loading branch information
tlarbals824 authored Aug 27, 2024
2 parents 602aa99 + de4a8f3 commit 4d231eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .deploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM amazoncorretto:17-alpine-jdk

ARG TARGET_JAR=/api/build/libs/app.jar
ARG TARGET_JAR=/app/build/libs/app.jar

COPY ${TARGET_JAR} /app.jar
COPY ${TARGET_JAR} /application.jar

EXPOSE 8080
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=dev", "/app.jar"]
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=dev", "/application.jar"]

0 comments on commit 4d231eb

Please sign in to comment.