Files
addons/nginx_proxy/Dockerfile
Franck Nijhof bf051c1b2d nginx_proxy: Collection of small improvements (#911)
* nginx_proxy: Prettier JSON & YAML files

* nginx_proxy: Sort build.json

* nginx_proxy: Update add-on URL

* nginx_proxy: Remove curl from Dockerfile, already in base

* nginx_proxy: Tweak documentation
2019-12-19 13:16:42 +01:00

12 lines
161 B
Docker

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