File size: 272 Bytes
86fcc44
 
61cdfe1
 
 
 
 
86fcc44
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/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