Simple docker streamlit template app to be run on DigitalOcean app platform.
To deploy you first need to click on "Use this template" and then simply log into your Digital Ocean account and click on "Apps" -> "Launch Your App" -> "Github" and select the corresponding Github repository.
You can use my referral link to get $100 worth of credit over 60 days.
To run locally, try:
docker build . -t streamlit_app
docker run -p 8501:8501 -v ~/docker_streamlit/app:/app streamlit_app
Tips for the running updates on the server
git fetch origin
git merge --ff origin main
docker build . -t streamlit_app
docker run -p 8501:8501 -v ~/docker_streamlit/app:/app streamlit_app