moved to asyncd

This commit is contained in:
alexander
2026-01-23 09:21:42 +01:00
parent efc2116de4
commit e93e743f65
11 changed files with 106 additions and 76 deletions

View File

@@ -1,10 +1,12 @@
FROM python:3.12-slim
FROM python:3.12-alpine
WORKDIR /app
RUN apk add --no-cache curl git libsass
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["python", "src/main.py"]