Initial commit

This commit is contained in:
2024-05-01 12:31:54 -04:00
commit 333b2cf3a9
4 changed files with 71 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:latest
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5124
CMD ["python", "app.py"]