1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00
bitwarden/util/Nginx/Dockerfile
Kyle Spearrin f96911ed57 Revert "running as bitwarden user"
This reverts commit 19fa9bf8063f1d986b30d2c55370fcdd96febc21.
2018-03-23 22:16:57 -04:00

10 lines
178 B
Docker

FROM nginx:1.12
COPY nginx.conf /etc/nginx
COPY proxy.conf /etc/nginx
COPY mime.types /etc/nginx
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]