This commit is contained in:
2025-05-19 15:05:22 +02:00
parent a46a0d6012
commit 1113337728

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
from alpine:3.19 as builder
ARG VERSION=2025.04.28.5849b4d
run apk add --update curl
run curl -sLO "https://github.com/cheeaun/phanpy/releases/download/${VERSION}/phanpy-dist.tar.gz" \
&& mkdir /phanpy \
&& tar zxf phanpy-dist.tar.gz -C /phanpy
from nginx:1.25.4-alpine
copy --from=builder /phanpy /usr/share/nginx/html