feat(docker-workflow): add essential build dependencies
Some checks failed
Docker CI/CD / Docker Build and Push (push) Failing after 5m24s

Updated the docker-latest workflow to install additional critical build dependencies including build-essential and libpython3-dev, alongside docker.io. This enhancement is geared towards supporting a wider range of development scenarios and facilitating more complex build requirements directly within the CI pipeline.
This commit is contained in:
Kumi 2024-04-23 09:43:14 +02:00
parent a3b4cf217c
commit 224535373e
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -11,10 +11,10 @@ jobs:
container:
image: node:20-bookworm
steps:
- name: Install Docker
- name: Install dependencies
run: |
apt update
apt install -y docker.io
apt install -y docker.io build-essential libpython3-dev
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx