We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce46f16 + e36bb7b commit 5ee2b16Copy full SHA for 5ee2b16
Dockerfile
@@ -46,3 +46,8 @@ RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf
46
47
# Copy Mesamatrix into /var/www/html/
48
COPY --from=build /app/ /var/www/html/
49
+
50
+# Create private directory and make it www-data:www-data so that the PHP
51
+# scripts can write in it.
52
+RUN mkdir /var/www/html/private && \
53
+ chown www-data:www-data /var/www/html/private/
0 commit comments