Ikyy commited on
Commit
e462821
1 Parent(s): 8cbc298

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -6
Dockerfile CHANGED
@@ -6,7 +6,8 @@ git \
6
  ffmpeg \
7
  imagemagick \
8
  python \
9
- curl \
 
10
  webp && \
11
  apt-get upgrade -y && \
12
  rm -rf /var/lib/apt/lists/*
@@ -19,11 +20,7 @@ WORKDIR /app/kyysya
19
 
20
  RUN npm install --force && npm i -g nodemon
21
 
22
- RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
23
-
24
- RUN python get-pip.py
25
-
26
- RUN pip install -r requirement.txt
27
 
28
  ENV PORT 7860
29
 
 
6
  ffmpeg \
7
  imagemagick \
8
  python \
9
+ python3 \
10
+ python3-pip \
11
  webp && \
12
  apt-get upgrade -y && \
13
  rm -rf /var/lib/apt/lists/*
 
20
 
21
  RUN npm install --force && npm i -g nodemon
22
 
23
+ RUN pip3 install -r requirement.txt
 
 
 
 
24
 
25
  ENV PORT 7860
26