diff --git a/Eureka/Dockerfile b/Eureka/Dockerfile new file mode 100644 index 00000000..119a7cac --- /dev/null +++ b/Eureka/Dockerfile @@ -0,0 +1,5 @@ +FROM openjdk:17-jdk + +ARG JAR_FILE=build/libs/*.jar +COPY ${JAR_FILE} app.jar +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-Duser.timezone=Asia/Seoul" , "-jar", "app.jar"] diff --git a/apiGateway-service/Dockerfile b/apiGateway-service/Dockerfile new file mode 100644 index 00000000..119a7cac --- /dev/null +++ b/apiGateway-service/Dockerfile @@ -0,0 +1,5 @@ +FROM openjdk:17-jdk + +ARG JAR_FILE=build/libs/*.jar +COPY ${JAR_FILE} app.jar +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-Duser.timezone=Asia/Seoul" , "-jar", "app.jar"] diff --git a/config-service/Dockerfile b/config-service/Dockerfile new file mode 100644 index 00000000..119a7cac --- /dev/null +++ b/config-service/Dockerfile @@ -0,0 +1,5 @@ +FROM openjdk:17-jdk + +ARG JAR_FILE=build/libs/*.jar +COPY ${JAR_FILE} app.jar +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-Duser.timezone=Asia/Seoul" , "-jar", "app.jar"] diff --git a/noti-service/Dockerfile b/noti-service/Dockerfile new file mode 100644 index 00000000..119a7cac --- /dev/null +++ b/noti-service/Dockerfile @@ -0,0 +1,5 @@ +FROM openjdk:17-jdk + +ARG JAR_FILE=build/libs/*.jar +COPY ${JAR_FILE} app.jar +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-Duser.timezone=Asia/Seoul" , "-jar", "app.jar"] diff --git a/user-service/Dockerfile b/user-service/Dockerfile new file mode 100644 index 00000000..119a7cac --- /dev/null +++ b/user-service/Dockerfile @@ -0,0 +1,5 @@ +FROM openjdk:17-jdk + +ARG JAR_FILE=build/libs/*.jar +COPY ${JAR_FILE} app.jar +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-Duser.timezone=Asia/Seoul" , "-jar", "app.jar"] diff --git a/weather-service/Dockerfile b/weather-service/Dockerfile new file mode 100644 index 00000000..e96ea1dc --- /dev/null +++ b/weather-service/Dockerfile @@ -0,0 +1,5 @@ +\FROM openjdk:17-jdk + +ARG JAR_FILE=build/libs/*.jar +COPY ${JAR_FILE} app.jar +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-Duser.timezone=Asia/Seoul" , "-jar", "app.jar"]