Spaces:
Sleeping
Sleeping
File size: 474 Bytes
b53fa91 | 1 2 3 4 5 6 7 8 9 10 11 | docker run --rm -it <YOUR_IMAGE_ID> ls -la /app # Check the actual working directory in your image docker run --rm -it <YOUR_IMAGE_ID> pwd docker run --rm -it <YOUR_IMAGE_ID> find / -name "*.py" -type f | head -10 docker create --name temp-medai <YOUR_IMAGE_ID> docker cp utils/drive_saver.py temp-medai:/utils/drive_saver.py docker commit temp-medai medai-processing:patched docker rm temp-medai docker run -d --name medai-processing -p 8000:8000 medai-processing:patched |