ansible-actions-container/Dockerfile

14 lines
315 B
Docker
Raw Normal View History

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