mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 21:24:20 +01:00
* Update nginx.conf * Update nginx.conf * Update nginx.conf * Update nginx.conf * Update run.sh * Update run.sh * Update run.sh * Update run.sh * Update nginx.conf * Update run.sh * Update config.json * Update Dockerfile * Update run.sh * Update run.sh * Update run.sh * Update run.sh * Update config.json * Update CHANGELOG.md * Update run.sh * Update run.sh * Update config.json * Update run.sh * Update run.sh * Update config.json * Update config.json * Update CHANGELOG.md
12 lines
166 B
Docker
12 lines
166 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Setup base
|
|
RUN apk add --no-cache nginx openssl curl
|
|
|
|
# Copy data
|
|
COPY data/run.sh /
|
|
COPY data/nginx.conf /etc/
|
|
|
|
CMD [ "/run.sh" ]
|