This commit is contained in:
2026-03-12 14:43:31 +01:00
parent 8799190d24
commit 1c43f0b9fb
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
ENV API_TOKEN=changeme
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]