1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

adds EXPOSE 8080 to Dockerfile to be coherent to nginx default config (#403)

* 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
This commit is contained in:
gruzilla 2018-11-16 14:56:12 +01:00 committed by Kyle Spearrin
parent 7cda459127
commit e83325dd09

View File

@ -13,6 +13,10 @@ 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"]