prep for smithery deployment

This commit is contained in:
Taylor Wilsdon
2025-05-14 10:46:01 -04:00
parent 48172f1eb4
commit ce78b71c94
3 changed files with 11 additions and 98 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]