File size: 292 Bytes
567f740
 
3278e8a
567f740
 
3278e8a
567f740
 
3278e8a
567f740
 
3278e8a
567f740
3278e8a
 
567f740
 
3278e8a
567f740
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Use Node.js LTS version
FROM node:18-slim

# Set working directory
WORKDIR /app

# Copy package files
COPY package*.json ./

# Install dependencies
RUN npm install

# Copy application files
COPY . .

# Expose port
EXPOSE 7860

# Start the application
CMD ["npm", "start"]