Merge "NONRTRIC - PMS Persistent storage of policies and type definitions"
[nonrtric.git] / test / http-https-proxy / Dockerfile
1 ARG NEXUS_PROXY_REPO
2
3 FROM ${NEXUS_PROXY_REPO}node:16-alpine3.12
4
5 ENV NODE_ENV=production
6
7 WORKDIR /usr/src/app/cert
8 COPY cert/*.crt .
9 COPY cert/pass .
10
11 WORKDIR /usr/src/app
12 COPY http_proxy.js .
13
14 CMD [ "node", "http_proxy.js" ]