Initial commit

This commit is contained in:
2025-11-23 18:03:01 -08:00
commit 68b9adef1a
14 changed files with 423 additions and 0 deletions

9
Dockerfile Normal file
View File

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