initial commit

This commit is contained in:
2024-10-07 23:16:42 -04:00
commit 688149d6af
6 changed files with 194 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.8-slim
WORKDIR /app
COPY ./src /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
EXPOSE 7777
CMD ["gunicorn", "wsgi:app", "--bind", "0.0.0.0:7777"]