mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
e83325dd09
* adds EXPOSE 8080 to Dockerfile to be coherent to nginx default config * adds EXPOSE 8443 to Dockerfile to be coherent to nginx default SSL config
23 lines
445 B
Docker
23 lines
445 B
Docker
FROM nginx:1.14
|
|
|
|
LABEL com.bitwarden.product="bitwarden"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
gosu \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY nginx.conf /etc/nginx
|
|
COPY proxy.conf /etc/nginx
|
|
COPY mime.types /etc/nginx
|
|
COPY security-headers.conf /etc/nginx
|
|
COPY security-headers-ssl.conf /etc/nginx
|
|
COPY entrypoint.sh /
|
|
|
|
EXPOSE 8080
|
|
EXPOSE 8443
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|