From 2921b67732169b61a319c43ca41cb0b39c3f43cc Mon Sep 17 00:00:00 2001 From: "marcio.fernandes" Date: Tue, 3 Sep 2024 09:12:38 +0000 Subject: [PATCH] Add docker/Dockerfile --- docker/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docker/Dockerfile diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..d1e330c --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:latest +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update +RUN apt-get install -y gcc python3-dev +RUN apt-get install python3-pip -y +RUN pip3 install --upgrade pip +RUN pip3 install --upgrade virtualenv +RUN pip3 install ansible +RUN apt-get -y install openssh-client \ No newline at end of file