This commit is contained in:
2025-05-19 15:03:05 +02:00
parent 33a03c32e5
commit a46a0d6012

12
dockefile 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