Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 22:51:11 +00:00
commit 2bbace5ca8
9 changed files with 433 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM webdevops/php-nginx:8.3-alpine
ENV WEB_DOCUMENT_ROOT=/app/public
ARG CACHE_BUST=1771109471
COPY . /app
RUN echo "index index.php index.html index.htm;" > /opt/docker/etc/nginx/vhost.common.d/01-index.conf \
&& echo "add_header Cache-Control 'no-cache, no-store, must-revalidate';" > /opt/docker/etc/nginx/vhost.common.d/02-no-cache.conf \
&& chown -R application:application /app