Development

This commit is contained in:
Matthew Grotke 2026-06-07 16:27:16 -04:00
parent 19f0bfa79c
commit 687e0a66d1
8 changed files with 142 additions and 1 deletions

View file

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