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