CoolFace
Apppublic

gribsons/quant-tradingbot

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y --no-install-recommends \6    gcc \7    libssl-dev \8    && rm -rf /var/lib/apt/lists/*9 10COPY requirements.txt .11RUN pip install --no-cache-dir --prefer-binary -r requirements.txt12 13COPY . .14 15ENV PORT=786016EXPOSE 786017 18CMD ["sh", "-c", "uvicorn api_server:app --host 0.0.0.0 --port ${PORT}"]19