feat: Add Dockerization support

This commit is contained in:
danielvici123
2026-06-09 20:13:39 +02:00
parent 520fd4f1e6
commit 0103d2939d
6 changed files with 151 additions and 8 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
dhl:
build: .
image: dhl:latest
container_name: dhl
ports:
- "3000:3000"
volumes:
# Mount a local folder to /app to manage config.json and response files
- ./mock-data:/app
restart: unless-stopped