Files
server/util/Nginx/Dockerfile

17 lines
334 B
Docker
Raw Normal View History

2017-10-02 16:38:52 -04:00
FROM nginx:1.12
2017-08-04 12:21:13 -04:00
2018-03-27 14:55:33 -04:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
&& rm -rf /var/lib/apt/lists/*
2017-08-23 22:13:50 -04:00
COPY nginx.conf /etc/nginx
COPY proxy.conf /etc/nginx
COPY mime.types /etc/nginx
COPY entrypoint.sh /
2018-03-26 11:21:03 -04:00
RUN groupadd -g 999 bitwarden \
2018-03-27 14:55:33 -04:00
&& chmod +x /entrypoint.sh
2018-03-26 11:21:03 -04:00
2017-08-07 16:31:00 -04:00
ENTRYPOINT ["/entrypoint.sh"]