Add initial implementation and configuration files for Discord bot and dashboard

This commit is contained in:
2026-01-28 05:51:44 +00:00
parent 053db5e32b
commit 66ffe17aed
114 changed files with 775203 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# Use the official Node.js image as the base image
FROM node:22-slim
# Set the working directory inside the container
WORKDIR /app
# Copy package.json and package-lock.json to the working directory
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code to the working directory
COPY . .
# Expose the port for the dashboard
EXPOSE 8000
# Start the dashboard
CMD ["npm", "run", "dev"]