initial server stuff

This commit is contained in:
iamBadgers
2026-03-15 15:23:48 -07:00
commit 6bb60c49f4
7 changed files with 94 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.14.3-trixie
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["flask", "--app", "./src/main", "run", "--host=0.0.0.0"]