Files
cf-bypass-fast-fork/Dockerfile
Abhinai Reddy⛔️ cc967e92ce Update Dockerfile
2025-10-07 16:25:12 +05:30

19 lines
331 B
Docker

# Use official Node.js image
FROM node:20
# Set working directory
WORKDIR /app
# Copy package files and install dependencies
COPY package*.json ./
RUN npm install
# Copy the rest of the app
COPY . .
# Expose port (adjust if your app uses a different one)
EXPOSE 8080
# Default command (can be overridden)
CMD ["npm", "start"]