Boulbaba commited on
Commit
39c4409
·
1 Parent(s): 0185d31

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -8
Dockerfile CHANGED
@@ -4,16 +4,9 @@ WORKDIR /app
4
 
5
  ENV PYTHONDONTWRITEBYTECODE=1
6
  ENV PYTHONUNBUFFERED=1
7
- ENV PIP_NO_CACHE_DIR=1
8
 
9
- RUN apt-get update && apt-get install -y \
10
- build-essential \
11
- pkg-config \
12
- libsentencepiece-dev \
13
- && rm -rf /var/lib/apt/lists/*
14
-
15
  COPY requirements.txt .
16
- RUN pip install -r requirements.txt
17
 
18
  COPY . .
19
 
 
4
 
5
  ENV PYTHONDONTWRITEBYTECODE=1
6
  ENV PYTHONUNBUFFERED=1
 
7
 
 
 
 
 
 
 
8
  COPY requirements.txt .
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  COPY . .
12