diff --git a/Dockerfile b/Dockerfile index 10782f5..a2d152c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER Frederic Guillot RUN apt-get update && apt-get install -y apache2 php5 php5-sqlite git && apt-get clean && rm -rf /var/lib/apt/lists/* RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -RUN cd /var/www && git clone --depth 1 https://github.com/miniflux/miniflux.git +COPY . /var/www/miniflux RUN rm -rf /var/www/html && mv /var/www/miniflux /var/www/html RUN chown -R www-data:www-data /var/www/html/data