Update docker/Dockerfile
Some checks failed
/ build-docker-image (push) Failing after 43s

This commit is contained in:
2024-09-03 09:26:52 +00:00
parent 31a4530dd2
commit 40070d5385

View File

@@ -1,10 +1,7 @@
FROM ubuntu:latest FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update RUN apt-get update -y
RUN apt-get install -y gcc python3-dev RUN apt-get install -y gcc python3-dev
RUN apt-get install python3-pip -y RUN apt-get install python3-pip -y
RUN apt-get install python3-virtualenv -y RUN apt-get install python3-virtualenv -y
#RUN pip3 install --upgrade pip RUN apt-get install python3-ansible -y --break-system-packages
#RUN pip3 install --upgrade virtualenv
RUN apt-get install python3-ansible -y
RUN apt-get -y install openssh-client