AItool commited on
Commit
f4b6dfb
·
verified ·
1 Parent(s): 2af5973

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -12,7 +12,8 @@ RUN apt-get update && apt-get install -y \
12
  COPY requirements.txt ./
13
  COPY src/ ./src/
14
 
15
- RUN pip3 install -r requirements.txt
 
16
 
17
  EXPOSE 8501
18
 
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/
14
 
15
+ # 2. Install Python deps
16
+ RUN pip install --no-cache-dir -r requirements.txt
17
 
18
  EXPOSE 8501
19