Spaces:
Sleeping
Sleeping
| FROM huggingface/transformers:latest | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| build-essential \ | |
| libomp5 \ | |
| libopenblas-dev \ | |
| python3-dev \ | |
| wget \ | |
| curl | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt # Install dependencies from requirements.txt | |
| COPY . . | |