summaryrefslogtreecommitdiffstats
path: root/mod2/auth-service/Dockerfile
blob: 5c03a87ab26c4afab1123a4f14b889c8c33c4d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM nexus3.onap.org:10001/onap/integration-java11:8.0.0
WORKDIR /usr/app
VOLUME /tmp

ARG PROJECT_BUILD_DIR_NAME
ARG FINAL_JAR

EXPOSE 8082

COPY ${PROJECT_BUILD_DIR_NAME}/${FINAL_JAR} .

ENTRYPOINT ["java", \
            "-Djava.security.egd=file:/dev/./urandom", \
            "-jar", "mod-auth-service.jar"]