mirror of https://github.com/fspc/workstand.git
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.
5 lines
230 B
5 lines
230 B
FROM nginx
|
|
RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' | tee /etc/apt/sources.list.d/backports.list
|
|
RUN apt-get update
|
|
RUN apt-get install -y python-certbot -t jessie-backports
|
|
COPY conf/* /etc/nginx/conf.d/
|
|
|