You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
444 B

8 years ago
8 years ago
8 years ago
8 years ago
  1. FROM debian:sid
  2. LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
  3. RUN apt-get update \
  4. && apt-get install --no-install-recommends --no-install-suggests -y \
  5. openssl \
  6. ca-certificates \
  7. nginx-extras \
  8. python-pip \
  9. python-setuptools \
  10. && rm -rf /var/lib/apt/lists/*
  11. RUN pip2 install envtpl
  12. COPY entrypoint.sh /
  13. ENTRYPOINT ["/entrypoint.sh"]
  14. CMD ["nginx", "-g", "daemon off;"]