1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00
bitwarden-server/util/Nginx/Dockerfile

10 lines
178 B
Docker
Raw Normal View History

2017-10-02 22:38:52 +02:00
FROM nginx:1.12
2017-08-04 18:21:13 +02:00
2017-08-24 04:13:50 +02:00
COPY nginx.conf /etc/nginx
COPY proxy.conf /etc/nginx
COPY mime.types /etc/nginx
2018-03-24 02:58:45 +01:00
COPY entrypoint.sh /
2017-08-07 22:31:00 +02:00
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]