remainsalways commited on
Commit
ef63223
·
verified ·
1 Parent(s): 747eb3c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -3,11 +3,12 @@ RUN apt update && apt upgrade -y
3
  RUN apt-get install git curl python3-pip ffmpeg -y
4
  RUN apt-get -y install git
5
  RUN apt-get install -y wget python3-pip curl bash neofetch ffmpeg software-properties-common
6
-
7
- RUN pip3 install wheel
8
- RUN pip3 install --no-cache-dir -U -r requirements.txt
9
  WORKDIR /app
10
  COPY . /app
 
 
 
 
11
  RUN chown -R 1000 /app /usr && \
12
  chown 777 /app && \
13
  chmod +x /app/start.sh
 
3
  RUN apt-get install git curl python3-pip ffmpeg -y
4
  RUN apt-get -y install git
5
  RUN apt-get install -y wget python3-pip curl bash neofetch ffmpeg software-properties-common
 
 
 
6
  WORKDIR /app
7
  COPY . /app
8
+ RUN pip3 install wheel && \
9
+ pip3 install -U pip3
10
+ RUN pip3 install --no-cache-dir -U -r requirements.txt
11
+
12
  RUN chown -R 1000 /app /usr && \
13
  chown 777 /app && \
14
  chmod +x /app/start.sh