This commit is contained in:
2026-08-04 11:34:01 +07:00
commit 36e9225078
3 changed files with 102 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM serversideup/php:8.4-fpm-nginx
USER root
WORKDIR /var/www/html
COPY . .
RUN mkdir -p storage/uploads \
&& chown -R www-data:www-data storage \
&& chmod -R 775 storage
USER www-data
EXPOSE 8080