Files
ansible/docker/Dockerfile
marcio.fernandes 40070d5385
Some checks failed
/ build-docker-image (push) Failing after 43s
Update docker/Dockerfile
2024-09-03 09:26:52 +00:00

8 lines
255 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 apt-get install python3-ansible -y --break-system-packages