diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8e15c6c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +# Use the official Node.js v20 image as a base +FROM node:20 + +# Set the working directory +WORKDIR /app + +# Copy package.json +COPY package*.json ./ + +# Install dependencies using bun +RUN npm install + +# Copy the rest of the source code +COPY . . + +# Build the project and output to the ./dist directory +RUN npm run build + +# Expose the port the app runs on (adjust if necessary) +EXPOSE 3000 + +# Run the application +CMD ["npm", "run", "start"] diff --git a/README.md b/README.md index b1d099d..211d5ff 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ A fun and visually appealing stress testing server with a **Miku-themed** fronte ## Features ๐ŸŽ‰ +- ๐Ÿณ **Docker Ready**: MMB is ready to be built and run in a Docker container. - ๐ŸŒ **Real-time Attack Visualization**: View your attackโ€™s progress and statistics in real-time as it runs. ๐Ÿ”ฅ - ๐ŸŽถ **Miku-themed UI**: A cute and vibrant design with Mikuโ€™s vibe to make the process more fun. Includes a banger song to keep you pumped! ๐ŸŽง - ๐Ÿง‘โ€๐Ÿ’ป **Configurable Attack Parameters**: Easily set the attack method, packet size, duration, and packet delay via the frontend interface. diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..b511897 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +version: "3.8" + +services: + app: + build: + context: . + dockerfile: Dockerfile + ports: + - "3000:3000" + volumes: + - .:/app + environment: + - NODE_ENV=development + command: npm run start