dockerfile
This commit is contained in:
parent
39b3f2462e
commit
7131dd9a84
5
xdclass-coupon-service/Dockerfile
Normal file
5
xdclass-coupon-service/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM adoptopenjdk/openjdk11:jre11u-nightly
|
||||
VOLUME /tmp
|
||||
ARG JAR_FILE
|
||||
COPY ${JAR_FILE} app.jar
|
||||
ENTRYPOINT ["java","-jar","/app.jar"]
|
5
xdclass-gateway/Dockerfile
Normal file
5
xdclass-gateway/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM adoptopenjdk/openjdk11:jre11u-nightly
|
||||
VOLUME /tmp
|
||||
ARG JAR_FILE
|
||||
COPY ${JAR_FILE} app.jar
|
||||
ENTRYPOINT ["java","-jar","/app.jar"]
|
5
xdclass-order-service/Dockerfile
Normal file
5
xdclass-order-service/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM adoptopenjdk/openjdk11:jre11u-nightly
|
||||
VOLUME /tmp
|
||||
ARG JAR_FILE
|
||||
COPY ${JAR_FILE} app.jar
|
||||
ENTRYPOINT ["java","-jar","/app.jar"]
|
5
xdclass-product-service/Dockerfile
Normal file
5
xdclass-product-service/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM adoptopenjdk/openjdk11:jre11u-nightly
|
||||
VOLUME /tmp
|
||||
ARG JAR_FILE
|
||||
COPY ${JAR_FILE} app.jar
|
||||
ENTRYPOINT ["java","-jar","/app.jar"]
|
5
xdclass-user-service/Dockerfile
Normal file
5
xdclass-user-service/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM adoptopenjdk/openjdk11:jre11u-nightly
|
||||
VOLUME /tmp
|
||||
ARG JAR_FILE
|
||||
COPY ${JAR_FILE} app.jar
|
||||
ENTRYPOINT ["java","-jar","/app.jar"]
|
Loading…
Reference in New Issue
Block a user