docker-webserver-nginx/Dockerfile
2024-12-13 11:34:16 +01:00

16 lines
284 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
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]