This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-new-jars-sufix-in-dockerfiles in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 86d22878ecd7500a6525a73127b13f32bcd6b037 Author: leonidfrolov <[email protected]> AuthorDate: Tue Jul 13 14:00:42 2021 +0300 [DATALAB]: changed 2.4 to * --- services/billing-aws/Dockerfile | 4 ++-- services/billing-azure/Dockerfile | 4 ++-- services/billing-gcp/Dockerfile | 4 ++-- services/self-service/Dockerfile | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/services/billing-aws/Dockerfile b/services/billing-aws/Dockerfile index ed8e55e..b327889 100644 --- a/services/billing-aws/Dockerfile +++ b/services/billing-aws/Dockerfile @@ -23,6 +23,6 @@ FROM openjdk:8-alpine USER root -COPY billing-aws-2.4.jar /root/ +COPY billing-aws-*.jar /root/ -CMD java -Xmx1024M -jar -Duser.timezone=UTC -Dfile.encoding=UTF-8 /root/billing-aws-2.4.jar --conf /root/billing.yml \ No newline at end of file +CMD java -Xmx1024M -jar -Duser.timezone=UTC -Dfile.encoding=UTF-8 /root/billing-aws-*.jar --conf /root/billing.yml \ No newline at end of file diff --git a/services/billing-azure/Dockerfile b/services/billing-azure/Dockerfile index 975b251..1986e98 100644 --- a/services/billing-azure/Dockerfile +++ b/services/billing-azure/Dockerfile @@ -23,6 +23,6 @@ FROM openjdk:8-alpine USER root -COPY billing-azure-2.4.jar /root/ +COPY billing-azure-*.jar /root/ -CMD java -Xmx1024M -jar -Duser.timezone=UTC -Dfile.encoding=UTF-8 /root/billing-azure-2.4.jar --conf /root/billing.yml \ No newline at end of file +CMD java -Xmx1024M -jar -Duser.timezone=UTC -Dfile.encoding=UTF-8 /root/billing-azure-*.jar --conf /root/billing.yml \ No newline at end of file diff --git a/services/billing-gcp/Dockerfile b/services/billing-gcp/Dockerfile index 97e93c8..74c1b0e 100644 --- a/services/billing-gcp/Dockerfile +++ b/services/billing-gcp/Dockerfile @@ -23,6 +23,6 @@ FROM openjdk:8-alpine USER root -COPY billing-gcp-2.4.jar /root/ +COPY billing-gcp-*.jar /root/ -CMD java -Xmx1024M -jar -Duser.timezone=UTC -Dfile.encoding=UTF-8 /root/billing-gcp-2.4.jar --spring.config.location=/root/billing.yml \ No newline at end of file +CMD java -Xmx1024M -jar -Duser.timezone=UTC -Dfile.encoding=UTF-8 /root/billing-gcp-*.jar --spring.config.location=/root/billing.yml \ No newline at end of file diff --git a/services/self-service/Dockerfile b/services/self-service/Dockerfile index 6275ba0..354affa 100644 --- a/services/self-service/Dockerfile +++ b/services/self-service/Dockerfile @@ -34,7 +34,7 @@ RUN apk add --update \ && apk --purge -v del py-pip \ && rm -rf /var/cache/apk/* -COPY self-service-2.4.jar /root/ +COPY self-service-*.jar /root/ COPY entrypoint.sh / RUN chmod 755 /entrypoint.sh --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
