diff --git a/alpine/Dockerfile_v5 b/alpine/Dockerfile_v5 index aa9b025..9a4cb37 100644 --- a/alpine/Dockerfile_v5 +++ b/alpine/Dockerfile_v5 @@ -8,6 +8,7 @@ RUN set -eux; \ apk add --no-cache \ curl \ mysql-client \ + git \ libarchive-tools; \ mkdir -p /var/www/app @@ -118,5 +119,7 @@ RUN composer install --no-dev --no-suggest --no-progress --quiet ENV APP_ENV production ENV LOG errorlog +RUN php artisan storage:link + ENTRYPOINT ["docker-entrypoint"] CMD ["php-fpm"]