feature: 🐋 added docker image
This commit is contained in:
parent
185c01aa6d
commit
2f97120550
3 changed files with 38 additions and 0 deletions
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -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"]
|
|
@ -6,6 +6,7 @@ A fun and visually appealing stress testing server with a **Miku-themed** fronte
|
||||||
|
|
||||||
## Features 🎉
|
## 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. 🔥
|
- 🌐 **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! 🎧
|
- 🎶 **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.
|
- 🧑💻 **Configurable Attack Parameters**: Easily set the attack method, packet size, duration, and packet delay via the frontend interface.
|
||||||
|
|
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue