Spaces:
Paused
Paused
File size: 340 Bytes
c74db65 6343462 c74db65 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.12-slim
WORKDIR /app
COPY requirements-api.txt .
RUN pip install --no-cache-dir -r requirements-api.txt
COPY outlook2api/ outlook2api/
COPY pyproject.toml .
RUN mkdir -p /tmp/data
ENV DATABASE_URL=sqlite+aiosqlite:////tmp/data/outlook2api.db
CMD ["uvicorn", "outlook2api.app:app", "--host", "0.0.0.0", "--port", "8001"]
|