zaidmehdi commited on
Commit
a94ca7c
1 Parent(s): e081842

remove tests

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -5
Dockerfile CHANGED
@@ -4,12 +4,10 @@ WORKDIR /app
4
 
5
  COPY requirements.txt .
6
 
7
- RUN pip install --upgrade pip
8
- RUN pip install --no-cache-dir -r requirements.txt
9
 
10
- COPY src /app/src
11
- COPY tests /app/tests
12
- COPY models /app/models
13
 
14
  EXPOSE 80
15
 
 
4
 
5
  COPY requirements.txt .
6
 
7
+ RUN pip install --upgrade pip && \
8
+ pip install --no-cache-dir -r requirements.txt
9
 
10
+ COPY src models /app/
 
 
11
 
12
  EXPOSE 80
13