fix: update Dockerfile to correct paths for package.json and source files
Some checks failed
Deploy Application / deploy (push) Failing after 11s
Test runner / check-runner (push) Successful in 3s

This commit is contained in:
2026-01-06 21:51:10 +01:00
parent f4895eaa03
commit 9890563dc2

View File

@@ -1,9 +1,9 @@
# Etap 1: Build Vue
FROM node:20 AS build
WORKDIR /app
COPY frontend/package*.json ./
COPY ./package*.json ./
RUN npm install
COPY frontend ./
COPY . ./
RUN npm run build
# Etap 2: Nginx serwujący Vue + proxy do backendu