fix: correct paths in Dockerfiles for requirements and package files
Some checks failed
Deploy Application / deploy (push) Failing after 53s
Test runner / check-runner (push) Successful in 3s

This commit is contained in:
2026-01-06 21:55:02 +01:00
parent 9890563dc2
commit 57dd7d169f
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
# Etap 1: Build Vue
FROM node:20 AS build
WORKDIR /app
COPY ./package*.json ./
COPY package*.json ./
RUN npm install
COPY . ./
RUN npm run build