Initial commit

This commit is contained in:
2025-11-23 18:38:01 -08:00
commit 848eb0370f
6 changed files with 120 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.11
COPY ./source /source
RUN pip install --no-cache-dir -r /source/requirements.txt
EXPOSE 8000
RUN useradd app
USER app
WORKDIR /source
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]