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.

19 lines
413 B

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