Skip to content

Commit

Permalink
refactor : 머지 충돌 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Jul 16, 2024
2 parents 2588139 + 4453884 commit 2c26ec9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/showpot-dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
mkdir -p deployment
cp Dockerfile docker-compose.yml deployment/
cp -r ./app/build/libs deployment/
cp -r ./app deployment/
- name: Get Github Actions IP
id: ip
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ gradle-app.setting
### QClass ###
**/src/main/generated/

# End of https://www.toptal.com/developers/gitignore/api/java,intellij+all,macos,gradle

### application-cloud-local.yml
app/src/main/resources/application-cloud-local.yml
app/src/main/resources/application-cloud-local.yml

# End of https://www.toptal.com/developers/gitignore/api/java,intellij+all,macos,gradle
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:21-jdk-slim
ARG JAR_FILE_PATH=libs/*.jar
ARG JAR_FILE_PATH=app/build/libs/*.jar
COPY ${JAR_FILE_PATH} app.jar
ENTRYPOINT ["java", "-jar", "app.jar"]

0 comments on commit 2c26ec9

Please sign in to comment.