initial release (nginx+php ok)

This commit is contained in:
2024-12-13 10:00:45 +01:00
commit fd3195a8b2
12 changed files with 127 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
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" ]