Initial commit

This commit is contained in:
James Pattinson
2025-10-24 11:07:03 +01:00
commit 2ae556f9d9
8 changed files with 1618 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:latest
RUN apk add --no-cache nginx php83 php83-fpm php83-mysqli php83-curl
RUN mkdir -p /run/nginx
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD php-fpm83 -D && nginx -g 'daemon off;'