fix: Docker Compose configuration fixes

- Fix frontend Dockerfile reference (Dockerfile not Dockerfile.frontend)
- Remove obsolete 'version' attribute from docker-compose.yml
- Add --legacy-peer-deps to npm ci in frontend Dockerfile

Docker build now works correctly.
This commit is contained in:
Luca Sacchi Ricciardi
2026-04-07 22:24:46 +02:00
parent c3fa4d6127
commit b2528dd21a
3 changed files with 27 additions and 99 deletions

View File

@@ -9,7 +9,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
RUN npm ci --legacy-peer-deps
# Copy source code
COPY . .