docker-webserver-nginx/Dockerfile
paspo dfc8640b17
All checks were successful
continuous-integration/drone/push Build is passing
support for extra host config
2024-12-15 10:59:53 +01:00

19 lines
310 B
Docker

FROM alpine:3.21
RUN \
apk -U upgrade && \
apk add tini nginx 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 \
TZ=Etc/UTC
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]