Dockerfile 327 B

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