docker-swiss-army-knife/ubuntu/Dockerfile
Julius Zeidler d9c12885dd
All checks were successful
Build images / check-docker (push) Successful in 2s
Build images / build-and-push (push) Successful in 1m41s
roll back to ubuntu 22
2025-04-10 18:08:07 +02:00

10 lines
468 B
Docker

FROM ubuntu:jammy
RUN apt-get -y update && \
apt-get install -y curl diffutils jq bash git zsh docker nodejs npm && \
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" && \
apt-get update -y && \
apt-get install -y docker-ce
CMD [ "zsh" ]