├── Dockerfile ├── LICENSE ├── README.md ├── main.py └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineHY/docker-streamlit-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineHY/docker-streamlit-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineHY/docker-streamlit-app/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | 3 | 4 | st.text("Hello World") 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineHY/docker-streamlit-app/HEAD/requirements.txt --------------------------------------------------------------------------------