12345678 |
- FROM alpine:3.10
- LABEL maintainer="Bugz Software <[email protected]>"
- STOPSIGNAL SIGTERM
- RUN apk --no-cache add nginx nginx-mod-http-headers-more \
- nginx-mod-http-image-filter nginx-mod-http-geoip \
- nginx-mod-stream nginx-mod-stream-geoip nginx-mod-http-xslt-filter \
- && mkdir -p /run/nginx
- CMD ["nginx", "-g", "daemon off;"]
|