Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
|
|
14 |
libglib2.0-0 \
|
15 |
&& rm -rf /var/lib/apt/lists/*
|
16 |
|
17 |
-
# Install dependencies
|
18 |
COPY requirements.txt .
|
19 |
RUN pip install --upgrade pip
|
20 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
14 |
libglib2.0-0 \
|
15 |
&& rm -rf /var/lib/apt/lists/*
|
16 |
|
17 |
+
# Install Python dependencies
|
18 |
COPY requirements.txt .
|
19 |
RUN pip install --upgrade pip
|
20 |
RUN pip install --no-cache-dir -r requirements.txt
|