#!/bin/bash # Create a directory for storing files and set permissions mkdir /code/files chmod 777 /code/files # Any other setup or configuration steps before running the main application # ... # Run the main application exec uvicorn app:app --host 0.0.0.0 --port 7860