add Dockerfile

This commit is contained in:
2025-12-13 22:01:20 -05:00
parent 84ebf0972d
commit 422db7490a

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM alpine:3.20
ARG SITE
RUN echo "https://git.vxserver.dev/api/packages/fSD/alpine/main/fports" >> /etc/apk/repositories
&& apk update \
&& apk add --no-cache fes
ENTRYPOINT ["fes", "run", ${SITE}]