Add git to Docker image
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -8,7 +8,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
8 |
COPY . .
|
9 |
|
10 |
# Make sure ffmpeg and wget are installed
|
11 |
-
RUN apt-get update && apt-get install -y ffmpeg wget && apt-get clean
|
12 |
|
13 |
# Set environment variables
|
14 |
ENV PYTHONUNBUFFERED=1
|
|
|
8 |
COPY . .
|
9 |
|
10 |
# Make sure ffmpeg and wget are installed
|
11 |
+
RUN apt-get update && apt-get install -y ffmpeg wget git && apt-get clean
|
12 |
|
13 |
# Set environment variables
|
14 |
ENV PYTHONUNBUFFERED=1
|