Files
addons/nginx_proxy/Dockerfile
Pascal Vizeli f52e0d7a60 Update branch of add-ons with armv7 (#538)
* Update branch of add-ons with armv7

* update configurator

* Fix docker file

* Update docker files

* fix image

* Update

* certbot
2019-03-10 17:09:35 +01:00

15 lines
179 B
Docker

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