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
435 B
20 lines
435 B
FROM debian:sid
|
|
|
|
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y \
|
|
openssl \
|
|
ca-certificates \
|
|
nginx-extras \
|
|
python-pip \
|
|
python-setuptools \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install envtpl
|
|
|
|
COPY entrypoint.sh /
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|