10 lines
337 B
Docker
10 lines
337 B
Docker
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 apt-get install python3-virtualenv -y
|
|
#RUN pip3 install --upgrade pip
|
|
#RUN pip3 install --upgrade virtualenv
|
|
RUN apt-get install python3-ansible -y
|
|
RUN apt-get -y install openssh-client |