Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -16,7 +16,8 @@ WORKDIR /data/app
|
|
16 |
# Copy requirements and install dependencies
|
17 |
COPY requirements.txt ./
|
18 |
RUN pip install --upgrade pip \
|
19 |
-
&& pip install -r requirements.txt
|
|
|
20 |
|
21 |
# Copy application code
|
22 |
COPY . .
|
|
|
16 |
# Copy requirements and install dependencies
|
17 |
COPY requirements.txt ./
|
18 |
RUN pip install --upgrade pip \
|
19 |
+
&& pip install -r requirements.txt \
|
20 |
+
&& pip install --no-cache-dir opencv-python-headless
|
21 |
|
22 |
# Copy application code
|
23 |
COPY . .
|