microhum commited on
Commit
f1c8b84
·
1 Parent(s): 5588ec9

try change py path

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -3
  2. install.sh +5 -0
Dockerfile CHANGED
@@ -9,9 +9,7 @@ COPY . $HOME/app
9
 
10
  RUN xargs sudo apt-get install -y <packages.txt
11
 
12
- RUN file="$(ls -1 /home/usr/dawdwadwad)" && echo $file
13
-
14
- COPY /home/usr/.local/lib/python3/dist-packages/ /home/usr/.local/lib/python3.10/dist-packages/
15
 
16
  COPY . /code/requirements.txt
17
 
 
9
 
10
  RUN xargs sudo apt-get install -y <packages.txt
11
 
12
+ COPY /home/usr /home/usr/.local/lib/python3.10/dist-packages/
 
 
13
 
14
  COPY . /code/requirements.txt
15
 
install.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ sudo apt update
2
+ sudo apt install software-properties-common
3
+ sudo add-apt-repository ppa:deadsnakes/ppa
4
+ sudo apt update
5
+ sudo apt install python3.10