ansible-actions-container/Dockerfile

14 lines
363 B
Docker
Raw Normal View History

FROM python:3.12.2-slim-bookworm
2024-03-30 22:37:58 +00:00
RUN apt-get update > /dev/null && \
apt-get install -y -qq nodejs git > /dev/null && \
apt-get clean > /dev/null && \
useradd -m --uid 1010 --shell /bin/bash ansible
USER 1010
2024-03-30 22:37:58 +00:00
RUN pip install --user ansible > /dev/null && \
echo 'export PATH="$HOME/.local/bin:$PATH"' >> $HOME/.bashrc
ENTRYPOINT ["/bin/bash"]