build(docker): 서비스 별로 Dockerfile 생성
This commit is contained in:
4
discovery-service/Dockerfile
Normal file
4
discovery-service/Dockerfile
Normal file
@@ -0,0 +1,4 @@
|
||||
FROM openjdk:11
|
||||
VOLUME /tmp
|
||||
COPY build/libs/discovery-service-1.0.jar DiscoveryService.jar
|
||||
ENTRYPOINT ["java", "-jar", "DiscoveryService.jar"]
|
||||
@@ -5,7 +5,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.just-pickup'
|
||||
version = '0.0.1-SNAPSHOT'
|
||||
version = '1.0'
|
||||
sourceCompatibility = '11'
|
||||
|
||||
repositories {
|
||||
|
||||
Reference in New Issue
Block a user