Fix Docker build: lockfile, BuildKit DNS, and setuptools build backend

- Generate frontend/package-lock.json (required by npm ci)
- Add network: host to BuildKit build stages to fix DNS in pip installs
- Switch pyproject.toml build backend to setuptools.build_meta (stable)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
curo1305
2026-04-12 15:40:18 +02:00
parent 114df7162f
commit 2351b489fe
4 changed files with 3845 additions and 2 deletions
+2
View File
@@ -23,6 +23,7 @@ services:
build:
context: ./backend
dockerfile: Dockerfile
network: host
restart: unless-stopped
env_file: ./backend/.env
environment:
@@ -38,6 +39,7 @@ services:
build:
context: ./frontend
dockerfile: Dockerfile
network: host
restart: unless-stopped
ports:
- "80:80"