Files
pkgdev-docker/Dockerfile
Petr Polezhaev 824dfe9792
All checks were successful
publish / build-and-publish (push) Successful in 31s
add ssh to the container
2026-02-03 02:41:01 +03:00

10 lines
269 B
Docker

FROM python:3-alpine
RUN apk add --no-cache "bash>=5.3" git openssh && \
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" ]