Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server Upload #24

Merged
merged 2 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Dockerfile

# jdk17 Image Start
FROM openjdk:17

# 인자 설정 - JAR_File
ARG JAR_FILE=build/libs/*.jar

# jar 파일 복제
COPY ${JAR_FILE} app.jar

# 인자 설정 부분과 jar 파일 복제 부분 합쳐서 진행해도 무방
#COPY build/libs/*.jar app.jar

# 실행 명령어
ENTRYPOINT ["java", "-jar", "app.jar"]
55 changes: 0 additions & 55 deletions src/main/generated/com/chimaera/wagubook/entity/QCategory.java

This file was deleted.

54 changes: 0 additions & 54 deletions src/main/generated/com/chimaera/wagubook/entity/QFollow.java

This file was deleted.

41 changes: 0 additions & 41 deletions src/main/generated/com/chimaera/wagubook/entity/QLocation.java

This file was deleted.

58 changes: 0 additions & 58 deletions src/main/generated/com/chimaera/wagubook/entity/QMember.java

This file was deleted.

61 changes: 0 additions & 61 deletions src/main/generated/com/chimaera/wagubook/entity/QMenu.java

This file was deleted.

71 changes: 0 additions & 71 deletions src/main/generated/com/chimaera/wagubook/entity/QPost.java

This file was deleted.

Loading
Loading