Dockerfile for pkgdev

This commit is contained in:
2026-02-03 00:13:35 +03:00
commit 0a69471491

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3-alpine
RUN apk add --no-cache "bash>=5.3" git && \
pip install --root-user-action=ignore pkgdev && \
pip cache purge && \
git config --global --add safe.directory '*' && \
ln -s /bin/bash /usr/bin/bash
ENTRYPOINT [ "/bin/bash" ]