FROM lscr.io/linuxserver/code-server:latest

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y

#curl
RUN apt-get install curl -y

#docker
RUN  curl -fsSL https://get.docker.com -o get-docker.sh && sh ./get-docker.sh


#openssh client
RUN apt-get install -y openssh-client

#python3
RUN apt-get install -y gcc python3-dev
RUN apt-get install python3-pip -y


#ansible
RUN rm /usr/lib/python*/EXTERNALLY-MANAGED
RUN pip3 install ansible
RUN pip3 install ansible-dev-tools && pip3 install ansible-runner && pip3 install ansible-lint

