Files
ansible/docker/Dockerfile
Márcio Fernandes 8e0a43481c
All checks were successful
/ build-docker-image (push) Successful in 18s
ansible docker and continous integration to git.limbosolution.com/kb packages
2024-09-03 11:19:02 +01:00

8 lines
241 B
Docker

FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y
RUN apt-get install -y gcc python3-dev
RUN apt-get install python3-pip -y
RUN apt-get install python3-virtualenv -y
RUN pip3 install ansible --break-system-packages