[docker] Drop docker-engine from ci-env images

This commit is contained in:
Laura Hausmann 2024-07-08 03:49:46 +02:00
parent 284e63b149
commit b071ce32c7
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
2 changed files with 2 additions and 2 deletions

View file

@ -4,5 +4,5 @@ RUN install -m 0755 -d /etc/apt/keyrings
RUN curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
RUN chmod a+r /etc/apt/keyrings/docker.asc
RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
RUN apt-get update && apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin -y
RUN apt-get update && apt-get install docker-ce-cli docker-buildx-plugin -y
CMD ["/bin/bash"]

View file

@ -1,3 +1,3 @@
FROM iceshrimp.dev/iceshrimp/dotnet-sdk:8.0-alpine
RUN apk add --no-cache --no-progress git docker python3 curl go nodejs-current tar zstd make
RUN apk add --no-cache --no-progress git docker-cli docker-cli-buildx python3 curl go nodejs-current tar zstd make
CMD ["/bin/bash"]