superkart-flask-api / Dockerfile
saibsund's picture
Upload Dockerfile with huggingface_hub
944b905 verified
raw
history blame contribute delete
247 Bytes
FROM python:3.9
WORKDIR /app
RUN apt-get update && apt-get install -y gcc gfortran libopenblas-dev liblapack-dev && rm -rf /var/lib/apt/lists/*
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]