Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -27,7 +27,7 @@ COPY backend/package.json backend/package-lock.json ./backend/
|
|
27 |
RUN cd backend && npm install
|
28 |
|
29 |
# Copy the Vite build output from Stage 1 to the backend's static folder
|
30 |
-
COPY --from=build /app/frontend/dist ./backend/
|
31 |
|
32 |
# Copy the backend source code
|
33 |
COPY backend ./backend
|
|
|
27 |
RUN cd backend && npm install
|
28 |
|
29 |
# Copy the Vite build output from Stage 1 to the backend's static folder
|
30 |
+
COPY --from=build /app/frontend/dist ./backend/build
|
31 |
|
32 |
# Copy the backend source code
|
33 |
COPY backend ./backend
|