From 1dce89b4f83b2cd926bb6b16dfc263026808998c Mon Sep 17 00:00:00 2001 From: Tomer Weller Date: Tue, 16 Feb 2016 23:17:16 -0500 Subject: [PATCH] change dockerfile to copy the source files from local version rather than pulling from github --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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