Jofthomas HF staff commited on
Commit
2e9b94d
1 Parent(s): ce73248

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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