We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcff177 commit 9a9a364Copy full SHA for 9a9a364
.dockerignore
@@ -62,4 +62,3 @@ docs
62
.nyc_output
63
.eslintrc*
64
.prettierrc*
65
-tsconfig.json
Dockerfile
@@ -9,10 +9,11 @@ COPY package*.json ./
9
# Copy source code
10
COPY src ./
11
12
+COPY tsconfig.json ./
13
+
14
# Install dependencies
15
RUN npm i
16
-
17
# Build the application
18
RUN npm run build
19
@@ -21,12 +22,6 @@ FROM node:22-alpine
21
22
23
WORKDIR /app
24
-# Copy package files
25
-COPY package*.json ./
26
27
-# Install production dependencies
28
-RUN npm i
29
30
# Copy built application
31
COPY --from=builder /app/dist ./dist
32
0 commit comments