File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,13 @@ RUN docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd \
4141# Davis installation
4242RUN cd /var/www/ && curl --silent -o ${version}.tar.gz -L https://github.com/tchapi/davis/archive/v${version}.tar.gz \
4343 && tar xvzf ${version}.tar.gz \
44- && mv /var/www/davis-${version} /var/www/davis \
44+ && mv -f /var/www/davis-${version} /var/www/davis \
4545 && rm ${version}.tar.gz
4646
4747WORKDIR /var/www/davis
4848
4949# Install dependencies
5050RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
5151RUN APP_ENV=prod composer install --no-ansi --no-dev --no-interaction --no-progress --optimize-autoloader
52+
53+ RUN chown -R www-data:www-data var
You can’t perform that action at this time.
0 commit comments