feat: add proxy

This commit is contained in:
Anselm Stordeur
2019-01-16 19:54:30 +01:00
committed by Rainer Killinger
commit fbe1a65cd1
23 changed files with 3656 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM registry.gitlab.com/openstapps/projectmanagement/node
ADD . /app
WORKDIR /app
RUN apk add --update nginx && \
rm -rf /var/cache/apk/* && \
mv /app/nginx.conf /etc/nginx/
CMD ["sh", "./bin/run-docker.sh"]