Files
addons/nginx_proxy/Dockerfile
Pascal Vizeli 95a9ff737c Update Nginx (#445)
* Update Nginx

* Update Dockerfile

* Update config.json
2018-11-05 21:13:42 +01:00

17 lines
203 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache nginx libressl
# Copy data
COPY run.sh /
COPY nginx.conf /etc/
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]