Skip to content

Commit 47bb51a

Browse files
committed
fix: update Dockerfile for ts-sms-notification-service
- Changed the JAR file reference in the Dockerfile from ts-user-notification-service to ts-sms-notification-service. - Ensured the CMD command points to the correct JAR file for the SMS notification service.
1 parent e60bfda commit 47bb51a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ts-sms-notification-service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM eclipse-temurin:8-jre-alpine
22

33
RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone
44

5-
ADD ./target/ts-user-notification-service-1.0.jar /app/
6-
CMD ["java", "-Xmx200m", "-jar", "/app/ts-user-notification-service-1.0.jar"]
5+
ADD ./target/ts-sms-notification-service-1.0.jar /app/
6+
CMD ["java", "-Xmx200m", "-jar", "/app/ts-sms-notification-service-1.0.jar"]
77

88
EXPOSE 17854

0 commit comments

Comments
 (0)