Files
zyBooksBot/Dockerfile
2025-10-05 04:34:51 -07:00

21 lines
293 B
Docker

# 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"]