Initial Commit

This commit is contained in:
2026-02-12 23:41:57 -03:00
commit 624ca8a587
16599 changed files with 2062633 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# PHP 7.4 for legacy archive compatibility (sites unchanged since ~2010)
FROM php:7.4-fpm-alpine
RUN apk add --no-cache nginx bash
COPY php/conf.d/ /usr/local/etc/php/conf.d/
COPY nginx/conf.d/ /etc/nginx/conf.d/
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
COPY src/ /usr/share/nginx/html/
ENTRYPOINT ["/entrypoint.sh"]