aurudubot / Dockerfile
Alexainc
VILLAGE FESTIVAL 2026: Telegram Integration & Leaderboards
459c2fd
Raw
History Blame Contribute Delete
377 Bytes
# Use Node.js latest LTS
FROM node:20-slim
# Create and define the application's working directory
WORKDIR /app
# Copy package files and install dependencies
COPY package*.json ./
RUN npm install --production
# Copy the rest of the application code
COPY . .
# Expose the default Hugging Face Spaces port
EXPOSE 7860
# Start the application
CMD ["node", "server/index.js"]