FIXED minor typo
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y git ffmpeg aria2 \
|
|
15 |
|
16 |
COPY requirements.txt .
|
17 |
RUN python -m pip install pip -U
|
18 |
-
rm ~/.cache/pip -rf
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
21 |
# Copy the application code
|
|
|
15 |
|
16 |
COPY requirements.txt .
|
17 |
RUN python -m pip install pip -U
|
18 |
+
RUN rm ~/.cache/pip -rf
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
21 |
# Copy the application code
|