Files
DevOpsLab/Dockerfile
Сергей Антропов 382395b909 fix2
2025-03-05 18:59:10 +03:00

19 lines
451 B
Docker

FROM python:3.9-slim
# Устанавливаем зависимости
RUN apt-get update && apt-get install -y \
git \
curl \
docker.io \
docker-compose \
sshpass \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install --no-cache-dir ansible ansible-lint ansible-vault molecule docker molecule-docker
# Устанавливаем Docker CLI
RUN curl -fsSL https://get.docker.com | sh
WORKDIR /ansible
ENTRYPOINT ["/bin/bash"]