Skip to content

Commit

Permalink
feat :: dockerfile 빌드 명령어 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hyundong-L committed Nov 19, 2024
1 parent a244992 commit a715806
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM openjdk:17
CMD ["./gradlew", "clean", "build"]
ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","app.jar"]
8 changes: 0 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,4 @@ dependencies {

tasks.named('test') {
useJUnitPlatform()
}

tasks.register('copyPrivate', Copy) {
copy {
from './YouthMap_yml'
include "*.yml"
into 'src/main/resources'
}
}

0 comments on commit a715806

Please sign in to comment.