fix Analyse

This commit is contained in:
nadja
2026-08-26 15:41:44 +02:00
parent 146dad6f79
commit dbd31c6cd0
7 changed files with 22 additions and 30 deletions

View File

@@ -2,8 +2,8 @@ FROM node:20-alpine AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY package.json ./
RUN npm install
COPY . .
RUN npm run build

View File

@@ -6,7 +6,7 @@ server {
index index.html;
location /api/ {
proxy_pass http://backend:3500;
proxy_pass http://backend:3001;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;