docker-webserver-nginx/Dockerfile

16 lines
279 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 [ "/www", "/ssh" ]
ENV \
USERNAME=theuser \
PHP=none
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]