-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDockerfile
40 lines (28 loc) · 989 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use an official Node.js image as the base image
FROM node:18-alpine AS builder
# Set the working directory
WORKDIR /app
# Copy package.json and package-lock.json for installing dependencies
COPY package.json package-lock.json ./
# Install dependencies
RUN npm install
# Copy the TypeScript source code
COPY src ./src
COPY tsconfig.json ./
# Build the TypeScript code
RUN npm run build
# Use a smaller Node.js runtime image for the final build
FROM node:18-alpine
# Set the working directory
WORKDIR /app
# Copy the compiled code from the builder stage
COPY --from=builder /app/build ./build
# Copy package.json and package-lock.json for production dependencies
COPY --from=builder /app/package.json /app/package-lock.json ./
# Install only production dependencies
RUN npm ci --omit=dev
# Expose the port that the app runs on
EXPOSE 3000
# Start the application
CMD ["node", "build/index.js"]