Fix: use docker-ce-cli instead of docker.io
Some checks failed
Build horsepaste / build (push) Failing after 15s

This commit is contained in:
joshii 2026-03-15 18:52:27 +01:00
parent 173aba4bad
commit 20f79830ba

View file

@ -13,7 +13,7 @@ jobs:
run: git clone --depth 1 https://git.joshuahirsig.xyz/docker/horsepaste.git .
- name: Install Docker CLI
run: apt-get update -qq && apt-get install -y -qq docker.io >/dev/null
run: apt-get update -qq && apt-get install -y -qq ca-certificates curl gnupg >/dev/null && install -m 0755 -d /etc/apt/keyrings && curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc && echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bookworm stable" > /etc/apt/sources.list.d/docker.list && apt-get update -qq && apt-get install -y -qq docker-ce-cli >/dev/null
- name: Build and push
run: |