Mbonea commited on
Commit
1365547
1 Parent(s): 24031eb
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -11,9 +11,10 @@ RUN chmod 755 /srv
11
 
12
  # Install dependencies and Python packages
13
  RUN apt-get update && apt-get install -y git ffmpeg aria2 \
14
- && rm -rf /var/lib/apt/lists/*
15
 
16
  COPY requirements.txt .
 
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
19
  # Copy the application code
 
11
 
12
  # Install dependencies and Python packages
13
  RUN apt-get update && apt-get install -y git ffmpeg aria2 \
14
+ && rm -rf /var/lib/apt/lists/*
15
 
16
  COPY requirements.txt .
17
+ RUN python -m pip install -upgrade pip
18
  RUN pip install --no-cache-dir -r requirements.txt
19
 
20
  # Copy the application code