This commit is contained in:
2025-09-26 10:03:53 -04:00
commit 4d638bce99
7 changed files with 109 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.13-slim
WORKDIR /app
COPY pyproject.toml .
COPY main.py .
COPY lookup.txt .
RUN pip install flask httpx
EXPOSE 5000
CMD ["python", "-m", "flask", "--app", "main", "run", "--host=0.0.0.0"]