You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
579 B
15 lines
579 B
############################################################
|
|
# Dockerfile to build polaris-java quickstart example provider
|
|
|
|
# 1. You need to build the binary from the source code,
|
|
# use `mvn clean install` to build the binary.
|
|
# 2. You need to copy the quickstart-example-provider-*.jar to this directory
|
|
# 3. Replace the ${VERSION} to the real version of the project
|
|
|
|
############################################################
|
|
|
|
FROM java:8
|
|
|
|
ADD router-grayrelease-frontend-1.5.0-Hoxton.SR9-SNAPSHOT.jar /root/app.jar
|
|
|
|
ENTRYPOINT ["java","-jar","/root/app.jar"] |