12 lines
281 B
Docker
12 lines
281 B
Docker
FROM alpine:latest
|
|
LABEL homepage=https://git.redxef.duckdns.org/
|
|
|
|
RUN apk update && apk upgrade && apk add nginx gettext && \
|
|
rm -r /etc/nginx
|
|
|
|
COPY start-nginx.sh /usr/local/bin/
|
|
COPY environment_variables.txt /
|
|
|
|
USER root
|
|
ENTRYPOINT ["/bin/sh", "-c"]
|
|
CMD ["start-nginx.sh"]
|