Install Docker CLI in CI container build
Some checks failed
check / check (push) Failing after 35s

This commit is contained in:
matamune 2026-05-12 21:10:00 +00:00
parent 19bb3a1d30
commit f795d2857c
Signed by: matamune
GPG key ID: 3BB8E7D3B968A324

View file

@ -19,4 +19,7 @@ jobs:
- name: Test
run: bun test
- name: Build container
run: docker build -t git-webhooks:ci .
run: |
apt-get update
apt-get install -y docker.io
docker build -t git-webhooks:ci .