feat(docker-workflow): add essential build dependencies
Some checks failed
Docker CI/CD / Docker Build and Push (push) Failing after 5m24s
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:
parent
a3b4cf217c
commit
224535373e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue