LiamKhoaLe commited on
Commit
b53fa91
·
1 Parent(s): f89d821
Files changed (1) hide show
  1. dummy.txt +11 -3
dummy.txt CHANGED
@@ -1,3 +1,11 @@
1
- 314b9562a045c52ae6e783712a35273696fc5bdb0ab8a3859b06ea00e1b15b3d
2
- Successfully copied 7.17kB to temp-medai:/app/utils/drive_saver.py
3
- Error response from daemon: Could not find the file /app/utils in container temp-medai
 
 
 
 
 
 
 
 
 
1
+ docker run --rm -it <YOUR_IMAGE_ID> ls -la /app
2
+
3
+ # Check the actual working directory in your image
4
+ docker run --rm -it <YOUR_IMAGE_ID> pwd
5
+ docker run --rm -it <YOUR_IMAGE_ID> find / -name "*.py" -type f | head -10
6
+
7
+ docker create --name temp-medai <YOUR_IMAGE_ID>
8
+ docker cp utils/drive_saver.py temp-medai:/utils/drive_saver.py
9
+ docker commit temp-medai medai-processing:patched
10
+ docker rm temp-medai
11
+ docker run -d --name medai-processing -p 8000:8000 medai-processing:patched