From 5f5bf75b41355511392c2ec2c1d7357793bba788 Mon Sep 17 00:00:00 2001 From: Matthew Brown Date: Tue, 24 Mar 2020 00:15:31 -0400 Subject: [PATCH] Remove unnecessary copy --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 53f30cc..5d080fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,6 @@ COPY vendor /var/www/html/vendor COPY views /var/www/html/views COPY composer.* /var/www/html/ COPY .htaccess /var/www/html -COPY config.json /var/www/html COPY assets /var/www/html/assets RUN mkdir -p /var/www/html/database/github_commits && \ @@ -20,4 +19,4 @@ COPY docker/php/vhost.conf /etc/apache2/sites-available/000-default.conf RUN chown -R www-data:www-data /var/www/html \ && a2enmod rewrite -RUN docker-php-ext-install pdo_mysql \ No newline at end of file +RUN docker-php-ext-install pdo_mysql