bharathmunakala commited on
Commit
09aaa15
·
verified ·
1 Parent(s): 82544d7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,9 +10,9 @@ RUN apt-get update && apt-get install -y \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
13
- COPY . . # Copies everything in your project directory
14
 
15
- RUN pip3 install -r requirements.txt
16
 
17
  EXPOSE 8501
18
 
 
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
13
+ COPY . . # Copy all project files to /app
14
 
15
+ RUN pip3 install --no-cache-dir -r requirements.txt
16
 
17
  EXPOSE 8501
18