This commit is contained in:
2026-02-01 22:21:59 +03:00
commit 98b53d53f4
6 changed files with 323 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:3.22
RUN apk add --no-cache python3 shadow
COPY --chmod=0755 entrypoint.py /bin/entrypoint.py
VOLUME /etc/sysconfig.toml
ENTRYPOINT ["/bin/entrypoint.py"]
CMD ["/bin/sh"]