All checks were successful
/ build-docker-image (push) Successful in 1m20s
9 lines
279 B
Docker
9 lines
279 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 -y openssh-client
|
|
RUN apt-get install python3-pip -y
|
|
RUN apt-get install python3-virtualenv -y
|
|
RUN pip3 install ansible --break-system-packages
|