mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
10 lines
180 B
Docker
10 lines
180 B
Docker
FROM nginx:stable
|
|
|
|
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"]
|