update
All checks were successful
Build images / check-docker (push) Successful in 2s
Build images / build-and-push (push) Successful in 1m51s

This commit is contained in:
Julius Zeidler 2025-04-10 15:50:59 +02:00
parent aba6fe6342
commit f197a15745

View file

@ -1,9 +1,9 @@
FROM ubuntu
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 install -y docker-ce && \
apt-get install -y curl diffutils jq bash git zsh docker nodejs npm
apt-get install -y docker-ce
CMD [ "zsh" ]