aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 920c220..b423373 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,9 @@
# Stage 1: Frontend Build
FROM node:20-slim AS frontend-builder
WORKDIR /app/frontend
-COPY frontend-vanilla/package*.json ./
+COPY frontend/package*.json ./
RUN npm install
-COPY frontend-vanilla/ ./
+COPY frontend/ ./
RUN npm run build
# Stage 2: Backend Build