Update app.py
Browse files
app.py
CHANGED
@@ -78,3 +78,8 @@ COPY . .
|
|
78 |
# Set default command
|
79 |
CMD ["streamlit", "run", "app.py"]
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
78 |
# Set default command
|
79 |
CMD ["streamlit", "run", "app.py"]
|
80 |
|
81 |
+
import streamlit as st
|
82 |
+
|
83 |
+
st.title("Hello, Streamlit!")
|
84 |
+
st.write("This is a sample Streamlit app.")
|
85 |
+
|