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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -6,7 +6,7 @@ git \
6
  ffmpeg \
7
  imagemagick \
8
  python \
9
- python3-pip \
10
  webp && \
11
  apt-get upgrade -y && \
12
  rm -rf /var/lib/apt/lists/*
@@ -19,7 +19,11 @@ WORKDIR /app/kyysya
19
 
20
  RUN npm install --force && npm i -g nodemon
21
 
22
- RUN pip3 install -r requirement.txt
 
 
 
 
23
 
24
  ENV PORT 7860
25
 
 
6
  ffmpeg \
7
  imagemagick \
8
  python \
9
+ curl \
10
  webp && \
11
  apt-get upgrade -y && \
12
  rm -rf /var/lib/apt/lists/*
 
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