Skip to content

Commit

Permalink
Docker 이미지 생성 및 배포 (#15)
Browse files Browse the repository at this point in the history
* feat: pull request template 추가

* feat: 도커 이미지 생성을 위한 Dockerfile 추가

* fix: jar file 이름 변경
  • Loading branch information
kimahhh authored Oct 12, 2023
1 parent f8882ba commit fc48320
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## 🔥 Summary

## ✏️ Describe your changes

## 📖 Review Point
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM openjdk:11
ARG JAR_FILE=./build/libs/Club-0.0.1-SNAPSHOT.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]

0 comments on commit fc48320

Please sign in to comment.