Fix build et actions
Some checks failed
Build and Push Docker Images / Build Backend Image (push) Failing after 37s
Build and Push Docker Images / Build Frontend Image (push) Has been cancelled

This commit is contained in:
2025-12-23 13:23:07 +01:00
parent 8ec8b1aa42
commit 3e225b158f
8 changed files with 104 additions and 31 deletions

View File

@@ -4,16 +4,13 @@ FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY frontend/package*.json ./
# Debug: List files and Node.js version
RUN ls -la && node --version && npm --version
# Install dependencies with more verbose output
RUN npm install --verbose
# Install dependencies
RUN npm ci
# Copy application code
COPY . .
COPY frontend/ .
# Build argument for API URL
ARG NEXT_PUBLIC_API_URL=http://localhost:8001