CoolFace
Apppublic

SinDev76/fintech-api

sourceHugging Faceupdated 4mo agoView on Hugging Face
1likes
Dockerfile18 linesDownload Raw Back to root
1FROM python:3.9-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y --no-install-recommends git g++ make && apt-get clean && rm -rf /var/lib/apt/lists/*6 7COPY requirements.txt .8 9RUN pip install --no-cache-dir -r requirements.txt10 11COPY main.py .12 13ENV HF_HOME=/tmp/huggingface-cache14ENV TOKENIZERS_PARALLELISM=false15 16EXPOSE 786017 18CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]