diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..608f6d3 --- /dev/null +++ b/Dockerfile @@ -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"] diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ffda6c7 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + planka-mcp: + build: . + environment: + - PLANKA_URL=${PLANKA_URL:-http://localhost:3000} + - PLANKA_TOKEN=${PLANKA_TOKEN} + restart: always