add docker support

This commit is contained in:
2025-10-05 04:25:54 -07:00
parent cdba7de935
commit 98beaad8bd
4 changed files with 87 additions and 1 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Use Node.js official image
FROM node:lts-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Copy application files
COPY . .
# Expose port
EXPOSE 3000
# Start the application
CMD ["npm", "start"]