Some checks failed
deploy host / build-runner (push) Failing after 3m49s
16 lines
630 B
Docker
16 lines
630 B
Docker
FROM lscr.io/linuxserver/code-server:latest
|
|
RUN apt-get update -y
|
|
|
|
|
|
RUN apt-get update -y \
|
|
&& apt install -y software-properties-common ca-certificates curl software-properties-common \
|
|
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
|
|
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" \
|
|
&& add-apt-repository --yes --update ppa:ansible/ansible \
|
|
&& apt-get update -y \
|
|
&& apt-get install -y ansible \
|
|
&& apt-get install -y docker-ce \
|
|
&& python3 -m ensurepip --upgrade \
|
|
&& python3 -m pip install ansible-dev-tools
|
|
|