feat: add Docker build

This commit is contained in:
agatha 2024-09-07 15:22:06 -04:00
parent 1f4e4e0933
commit 98f94e6e15

View File

@ -0,0 +1,11 @@
FROM python:3.10-alpine
WORKDIR /app
EXPOSE 9999
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src /app
CMD ["python", "main.py"]