Code Review
/
nonrtric.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
Chart for Helm Manager
[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
9
# Need trailing slash on dest for multiple file copy
10
COPY cert/*.crt ./
11
COPY cert/pass .
12
13
WORKDIR /usr/src/app
14
COPY http_proxy.js .
15
16
CMD [ "node", "http_proxy.js" ]