From e7feb8c9d08e9c7f787af24932f9e5ef0cf9183a Mon Sep 17 00:00:00 2001 From: yohan Date: Fri, 28 Dec 2018 23:57:09 +0000 Subject: [PATCH] Fix bug in Dockerfile (order) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a83a1a6..0831c89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM debian:stretch MAINTAINER yohan <783b8c87@scimetis.net> ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get -y install apache2 && apt-get -y install python-certbot-apache -t stretch-backports ENV TZ=Europe/Paris RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list +RUN apt-get update && apt-get -y install apache2 && apt-get -y install python-certbot-apache -t stretch-backports RUN a2enmod ssl proxy proxy_http rewrite headers proxy_wstunnel EXPOSE 80 EXPOSE 443