10 lines
261 B
Docker
10 lines
261 B
Docker
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" ]
|