first / app.Dockerfile
IamVicky111's picture
Update app.Dockerfile
9acf126 verified
raw
history blame contribute delete
347 Bytes
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 . .