Forgot to add Deckerfile.

This commit is contained in:
g_it 2026-03-31 11:55:47 +02:00
commit 37fad905c8
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM python:3.14-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY data/ data/
COPY app/ app/
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--root-path", "/technical/api"]