File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,10 @@ COPY --from=vuejs /app/public/js/ /var/www/html/public/js/
63
63
COPY --from=vuejs /app/public/css/ /var/www/html/public/css/
64
64
COPY --from=vuejs /app/mix-manifest.json /var/www/html/mix-manifest.json
65
65
66
- RUN php artisan key:generate --ansi && php artisan storage:link && php artisan config:cache && php artisan route:cache
66
+
67
+
68
+
69
+ RUN rm -rf /var/www/html/public/storage
67
70
68
71
69
72
# these directories need to be writable by Apache
@@ -84,6 +87,9 @@ RUN chown -R www-data:www-data \
84
87
85
88
RUN chmod -R 775 /var/www/html/storage
86
89
90
+ RUN php artisan key:generate --ansi \
91
+ && php artisan storage:link
92
+
87
93
VOLUME ["/var/www/html/storage", "/var/www/html/bootstrap/cache"]
88
94
89
95
EXPOSE 80
You can’t perform that action at this time.
0 commit comments