mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
9 lines
209 B
Docker
9 lines
209 B
Docker
FROM nginx:stable
|
|
|
|
RUN rm /etc/nginx/nginx.conf
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |