Skip to content

Commit 3cd2288

Browse files
Fix: Correct shared directory path in Dockerfile for proper module resolution
1 parent f6d3911 commit 3cd2288

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-alpine
1+
FROM node:20-alpine
22

33
WORKDIR /app
44

@@ -8,7 +8,7 @@ RUN npm install --production
88

99
# Copy source code
1010
COPY server/ ./
11-
COPY shared/ ./shared/
11+
COPY shared/ ../shared/
1212

1313
# Environment
1414
ENV NODE_ENV=production

0 commit comments

Comments
 (0)