-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
37 lines (26 loc) · 888 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
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use a Node.js image with version >=18
FROM node:18-alpine AS builder
# Set the working directory inside the Docker container
WORKDIR /app
# Copy package files
COPY package.json package-lock.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code
COPY . .
# Build the application
RUN npm run build
# Use a smaller Node.js image to run the app
FROM node:18-alpine
# Set the working directory inside the Docker container
WORKDIR /app
# Copy built files from the builder
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/package.json /app/package-lock.json /app
# Install only production dependencies
RUN npm install --only=production
# Expose the port that the app runs on
EXPOSE 3000
# Command to run the application
CMD ["node", "dist/server.js"]