Hello,
Welcome to Microsoft Q&A,
Getting started with containers:
Please take a moment to read through the links below for the container deployment.
https://github.com/rbrands/streamlit-azure-container-app
https://luke.geek.nz/azure/deploy-streamlit-to-container-apps
Azure Blob Storage Integration
You could install the storage blob SDK in your Python application and use it to upload the files
pip install azure-storage-blob
from azure.storage.blob import BlobServiceClient
connect_str = "<your_connection_string>"
container_name = "streamlit-uploads"
blob_service_client = BlobServiceClient.from_connection_string(connect_str)
blob_client = blob_service_client.get_blob_client(container=container_name, blob="your_file.csv")
with open("your_file.csv", "rb") as data:
blob_client.upload_blob(data, overwrite=True)
Please Upvote and accept the answer if it helps!!