CirculartextAI2 / entrypoint.sh
circulartext's picture
Update entrypoint.sh
61cdfe1 verified
raw
history blame
No virus
272 Bytes
#!/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