Remove setup docker step from build (it's no longer necessary)

This commit is contained in:
Radek Golan 2024-03-04 19:30:03 +01:00
parent 3e25385f3c
commit 0344f18656

View File

@ -8,16 +8,6 @@ jobs:
steps: steps:
- name: Clone - name: Clone
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Set up Docker
run: |
apt-get update
apt-get install -y ca-certificates curl gnupg
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
- name: Log in to Registry - name: Log in to Registry
uses: https://github.com/docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a uses: https://github.com/docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with: with: