mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
* 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
12 lines
161 B
Docker
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" ]
|