Bug fixes
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ COPY requirements.txt .
|
|
7 |
RUN pip install --no-cache-dir -r requirements.txt
|
8 |
|
9 |
# Install ffmpeg, wget, AND git
|
10 |
-
RUN apt-get update && apt-get install -y ffmpeg wget git && apt-get clean
|
11 |
|
12 |
# Set up user environment
|
13 |
RUN mkdir -p /home/user && \
|
|
|
7 |
RUN pip install --no-cache-dir -r requirements.txt
|
8 |
|
9 |
# Install ffmpeg, wget, AND git
|
10 |
+
RUN apt-get update && apt-get install -y bash ffmpeg wget git && apt-get clean
|
11 |
|
12 |
# Set up user environment
|
13 |
RUN mkdir -p /home/user && \
|