Skip to content

Instantly share code, notes, and snippets.

@kczarzasty
Created August 16, 2021 15:33
Show Gist options
  • Save kczarzasty/9dbc37a7a077402e91edbc8cc565a647 to your computer and use it in GitHub Desktop.
Save kczarzasty/9dbc37a7a077402e91edbc8cc565a647 to your computer and use it in GitHub Desktop.
FROM debian:jessie
MAINTAINER NGINX Docker Maintainers “docker-maint@nginx.com”
ENV NGINX_VERSION 1.11.9–1~jessie
RUN apt-key adv — keyserver hkp://pgp.mit.edu:80 — recv-keys 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 \
&& echo “deb http://nginx.org/packages/mainline/debian/ jessie nginx” >> /etc/apt/sources.list \
&& apt-get update \
&& apt-get install — no-install-recommends — no-install-suggests -y \
ca-certificates \
nginx=${NGINX_VERSION} \
nginx-module-xslt \
nginx-module-geoip \
nginx-module-image-filter \
nginx-module-perl \
nginx-module-njs \
gettext-base \
&& rm -rf /var/lib/apt/lists/*
# forward request and error logs to docker log collector
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log
EXPOSE 80 443
COPY website /usr/share/nginx/html
CMD [“nginx”, “-g”, “daemon off;”]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment