So I can create files that will be referenced in a python script like this using HTTP:
{
"args": ["main.py"],
"files": [
{
"path": "main.py",
"content": "d2l0aCBvcGVuKCJ...="
},
{
"path": "source.txt",
"content": "c3VwZXIgYWR2YW...="
}
]
}
this works great, but the files I need to process are in tens of gigabytes. Is there any way for me to mount them directly into the container so that I won't be using HTTP to transfer all that data?
So I can create files that will be referenced in a python script like this using HTTP:
this works great, but the files I need to process are in tens of gigabytes. Is there any way for me to mount them directly into the container so that I won't be using HTTP to transfer all that data?