Add Dockerfile and docker-compose for easy deployment

This commit is contained in:
Flash
2026-04-03 14:59:40 +00:00
parent 154113f8a3
commit 6176d6a636
2 changed files with 17 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
CMD ["python", "server.py"]

7
docker-compose.yml Normal file
View File

@@ -0,0 +1,7 @@
services:
planka-mcp:
build: .
environment:
- PLANKA_URL=${PLANKA_URL:-http://localhost:3000}
- PLANKA_TOKEN=${PLANKA_TOKEN}
restart: always