Skip to content

Commit 35233f5

Browse files
committed
fix(docker): install all deps in build stage to include TypeScript
1 parent 452f929 commit 35233f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /app
55

66
# Copy package files
77
COPY package*.json ./
8-
RUN npm ci --only=production && npm cache clean --force
8+
RUN npm ci && npm cache clean --force
99

1010
# Copy source and build
1111
COPY . .

0 commit comments

Comments
 (0)