File size: 368 Bytes
c41bdce b0e79f7 c41bdce b0e79f7 c41bdce b0e79f7 c41bdce 78b4a8c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY membra_liquidity_agg/ membra_liquidity_agg/
COPY pyproject.toml .
RUN pip install -e .
EXPOSE 7860
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
CMD ["uvicorn", "membra_liquidity_agg.api:app", "--host", "0.0.0.0", "--port", "7860", "--log-level", "info"]
|