mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
10 lines
178 B
Docker
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"]
|