| # debian.sh --arch 'arm64' out/ 'stable' '@1757289600' |
| RUN /bin/sh -c apt update && apt upgrade -y && apt install -y curl ca-certificates git nodejs npm zip unzip # buildkit |
| RUN /bin/sh -c apt install -y ca-certificates curl && install -m 0755 -d /etc/apt/keyrings && curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc && chmod a+r /etc/apt/keyrings/docker.asc # buildkit |
| RUN /bin/sh -c 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 && apt update # buildkit |
| RUN /bin/sh -c apt install docker-ce-cli docker-buildx-plugin docker-compose-plugin # buildkit |