Skip to content
This repository was archived by the owner on Dec 14, 2025. It is now read-only.

Commit 8c4dd7d

Browse files
committed
Slight changes to fix issues
1 parent 019f394 commit 8c4dd7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ FROM node:20.10.0-alpine AS builder
55
WORKDIR /app
66

77
# Install dependencies
8-
COPY frontend/package*.json ./
8+
COPY package*.json ./
99
RUN npm install
1010

1111
# Copy source and build
12-
COPY frontend/ .
12+
COPY . .
1313
RUN npm run build
1414

1515
# Stage 2: Serve the build with Nginx

0 commit comments

Comments
 (0)