Skip to content

Commit

Permalink
Merge pull request #205 from PSR-Co/feat/#203-docker
Browse files Browse the repository at this point in the history
[feat] Dockerfile 추가
  • Loading branch information
psyeon1120 authored Dec 13, 2023
2 parents c86d31e + 5253d21 commit 59d5b32
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker-Push
name: deploy

on:
push:
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM openjdk:17-jre

ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Asia/Seoul
RUN apt-get install -y tzdata

COPY build/libs/psr-0.0.1-SNAPSHOT.jar app.jar
ENTRYPOINT ["java", "-jar", "app.jar"]

0 comments on commit 59d5b32

Please sign in to comment.