build(docker): 서비스 별로 Dockerfile 생성

This commit is contained in:
bum12ark
2022-03-11 14:13:55 +09:00
parent 55ec97af93
commit 3b4d07b1fb
17 changed files with 41 additions and 11 deletions

4
store-service/Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM openjdk:11
VOLUME /tmp
COPY build/libs/store-service-1.0.jar StoreService.jar
ENTRYPOINT ["java", "-jar", "StoreService.jar"]

View File

@@ -6,7 +6,7 @@ plugins {
}
group = 'com.just-pickup'
version = '0.0.1-SNAPSHOT'
version = '1.0'
sourceCompatibility = '11'
configurations {
compileOnly {