PrashantGoyal commited on
Commit
b5de08c
·
1 Parent(s): 9430422

Dockerfile

Browse files
Files changed (1) hide show
  1. DockerFile +0 -2
DockerFile CHANGED
@@ -2,7 +2,6 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /Transformers
4
 
5
- # 🔴 REQUIRED system libraries for pyarrow / datasets
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  gcc \
@@ -17,7 +16,6 @@ RUN apt-get update && apt-get install -y \
17
 
18
  COPY requirements.txt .
19
 
20
- # 🔴 Upgrade tooling and install deps
21
  RUN python -m pip install --upgrade pip setuptools wheel \
22
  && python -m pip install -r requirements.txt --no-cache-dir
23
 
 
2
 
3
  WORKDIR /Transformers
4
 
 
5
  RUN apt-get update && apt-get install -y \
6
  build-essential \
7
  gcc \
 
16
 
17
  COPY requirements.txt .
18
 
 
19
  RUN python -m pip install --upgrade pip setuptools wheel \
20
  && python -m pip install -r requirements.txt --no-cache-dir
21