Skip to content

Commit

Permalink
git actions & docker TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdozzi committed May 14, 2024
1 parent b62c9b7 commit 521e6fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
FROM openjdk:17-jdk

# The application's jar file.
ARG JAR_FILE=./build/libs/gitget-0.0.1-SNAPSHOT.jar
ARG JAR_FILE=./build/libs/GitGetApplication.jar

# Add the application's jar to the container.
COPY ${JAR_FILE} app.jar
COPY ${JAR_FILE} App.jar

# Run the jar file.
CMD ["java", "-jar", "app.jar"]
CMD ["java", "-jar", "App.jar"]

0 comments on commit 521e6fd

Please sign in to comment.