docker-webserver-nginx/Dockerfile
paspo 7a8422f208
All checks were successful
continuous-integration/drone/push Build is passing
puid and pgid support
2024-12-15 09:39:25 +01:00

18 lines
312 B
Docker

FROM alpine:3.21
RUN \
apk -U upgrade && \
apk add tini nginx gettext-envsubst openssh-server php84 php84-fpm php83 php83-fpm php82 php82-fpm
COPY rootfs /
VOLUME [ "/data/www", "/ssh" ]
ENV \
USERNAME=theuser \
PHP=none \
PUID=1000 \
PGID=1000
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]