recursive requirements
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ COPY requirements.txt .
|
|
| 10 |
|
| 11 |
# Installations
|
| 12 |
RUN apt-get update && apt-get install libzbar0 -y && pip install pyzbar
|
| 13 |
-
RUN pip install --no-cache-dir --upgrade requirements.txt
|
| 14 |
RUN pip install --no-cache-dir gradio
|
| 15 |
|
| 16 |
# Expose
|
|
|
|
| 10 |
|
| 11 |
# Installations
|
| 12 |
RUN apt-get update && apt-get install libzbar0 -y && pip install pyzbar
|
| 13 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
RUN pip install --no-cache-dir gradio
|
| 15 |
|
| 16 |
# Expose
|