add docker to ubuntu
All checks were successful
Build images / check-docker (push) Successful in 2s
Build images / build-and-push (push) Successful in 1m47s

This commit is contained in:
Julius Zeidler 2025-04-10 17:55:35 +02:00
parent f197a15745
commit 9dfa4c9b6c

View file

@ -5,5 +5,6 @@ RUN apt-get -y update && \
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" ]