Unify integration-* image usage
[dcaegen2/platform.git] / mod2 / auth-service / Dockerfile
1 FROM nexus3.onap.org:10001/onap/integration-java11:8.0.0
2 WORKDIR /usr/app
3 VOLUME /tmp
4
5 ARG PROJECT_BUILD_DIR_NAME
6 ARG FINAL_JAR
7
8 EXPOSE 8082
9
10 COPY ${PROJECT_BUILD_DIR_NAME}/${FINAL_JAR} .
11
12 ENTRYPOINT ["java", \
13             "-Djava.security.egd=file:/dev/./urandom", \
14             "-jar", "mod-auth-service.jar"]