Spaces:
Sleeping
Sleeping
remove tests
Browse files- Dockerfile +3 -5
Dockerfile
CHANGED
@@ -4,12 +4,10 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY requirements.txt .
|
6 |
|
7 |
-
RUN pip install --upgrade pip
|
8 |
-
|
9 |
|
10 |
-
COPY src /app/
|
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 |
|