ci(build): use apt-get with correct Ubuntu package names
Test and Lint / test (push) Failing after 1m20s
Build and Push Docker Images / test (push) Failing after 2m54s
Build and Push Docker Images / build-api (push) Has been skipped
Build and Push Docker Images / build-frontend (push) Has been skipped

Replace apt with apt-get, add -y flag, fix Alpine-style package names
(py3-pip → python3-pip, docker-cli → docker.io), and drop musl-dev.
This commit is contained in:
2026-04-02 20:59:11 -04:00
parent 02e1c41126
commit 89fec43aa2
+4 -4
View File
@@ -15,7 +15,7 @@ jobs:
- name: Install system dependencies
shell: sh
run: |
apt update && apt install git python3 py3-pip gcc musl-dev libpq-dev python3-dev
apt-get update && apt-get install -y git python3 python3-pip gcc libpq-dev python3-dev
- name: Checkout code
shell: sh
@@ -36,7 +36,7 @@ jobs:
- name: Install Node.js and check TypeScript types
shell: sh
run: |
apt install nodejs npm
apt-get install -y nodejs npm
cd frontend
npm ci
npm run generate:local
@@ -65,7 +65,7 @@ jobs:
- name: Install dependencies
shell: sh
run: |
apt install git docker-cli
apt-get install -y git docker.io
- name: Checkout code
shell: sh
@@ -137,7 +137,7 @@ jobs:
- name: Install dependencies
shell: sh
run: |
apt install git docker-cli
apt-get install -y git docker.io
- name: Checkout code
shell: sh