Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -9,9 +9,10 @@ COPY ./requirements.txt /app/requirements.txt
|
|
| 9 |
|
| 10 |
# Install dependencies
|
| 11 |
RUN apt update && apt install -y python3 python3-pip
|
|
|
|
|
|
|
| 12 |
RUN python3 -m pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
| 13 |
RUN apt update && apt install -y ffmpeg
|
| 14 |
-
RUN apt update && apt install -y git
|
| 15 |
# Add and configure the user
|
| 16 |
RUN useradd -m -u 1000 user
|
| 17 |
|
|
|
|
| 9 |
|
| 10 |
# Install dependencies
|
| 11 |
RUN apt update && apt install -y python3 python3-pip
|
| 12 |
+
RUN apt update && apt install -y git
|
| 13 |
+
|
| 14 |
RUN python3 -m pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
| 15 |
RUN apt update && apt install -y ffmpeg
|
|
|
|
| 16 |
# Add and configure the user
|
| 17 |
RUN useradd -m -u 1000 user
|
| 18 |
|