docker-swiss-army-knife/ubuntu/Dockerfile

10 lines
437 B
Text
Raw Normal View History

FROM ubuntu
2025-04-10 15:41:00 +02:00
RUN apt-get -y update && \
2025-04-10 15:50:59 +02:00
apt-get install -y curl diffutils jq bash git zsh docker nodejs npm && \
2025-04-10 15:41:00 +02:00
apt-get install -y apt-transport-https ca-certificates curl software-properties-common && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" && \
2025-04-10 15:50:59 +02:00
apt-get install -y docker-ce
CMD [ "zsh" ]