Skip to content

Commit

Permalink
Fix: github-actions.yml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
adorableco committed Jun 5, 2024
1 parent eeb81ff commit 6d218bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
mkdir -p ./src/main/resources
touch ./src/main/resources/application.properties
echo "${{ secrets.PROPERTIES }}" > ./src/main/resources/application.properties
cat ./src/main/resources/application.properties
shell: bash

- name: Build with Gradle
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM openjdk:11
WORKDIR /build/libs
COPY build build
ENTRYPOINT ["java","-jar","ctf-0.0.1-SNAPSHOT.jar"]
VOLUME /tmp
WORKDIR /app
COPY build/libs/ctf-0.0.1-SNAPSHOT.jar cherrycode.jar
ENTRYPOINT ["java","-jar","cherrycode.jar"]

0 comments on commit 6d218bd

Please sign in to comment.