Files
agcs/Dockerfile
James Pattinson 2ae556f9d9 Initial commit
2025-10-24 11:07:03 +01:00

11 lines
207 B
Docker

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;'