docker-webserver-nginx/Dockerfile

16 lines
284 B
Docker
Raw Normal View History

2024-12-13 09:00:45 +00:00
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 /
2024-12-13 10:34:16 +00:00
VOLUME [ "/data/www", "/ssh" ]
2024-12-13 09:00:45 +00:00
ENV \
USERNAME=theuser \
PHP=none
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]