Skip to content
Snippets Groups Projects

modify JenkinsFile

Merged 김영훈 requested to merge master into main
Files
2
Dockerfile 0 → 100644
+ 5
0
FROM openjdk:17
ARG JAR_FILE=target/myweb*.jar
COPY ${JAR_FILE} app.jar
EXPOSE 80
ENTRYPOINT ["java","-jar","/app.jar"]
\ No newline at end of file
Loading