Duplicated from SpacesExamples/streamlit-docker-example
3ef37b3 46c1c0c 3ef37b3 46c1c0c
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st # Simple Streamlit app st.title("Simple Streamlit App") st.write("Hello, Dockerized Streamlit World!") # Input example name = st.text_input("Enter your name:") if name: st.write(f"Hello, {name}!")