Skip to content

Commit 7d484ea

Browse files
committed
Add st_app.py to the Docker file.
The getting started process is broken because the dev is expected to run the script/server script and have everything work. Upon looking at the Dockerfile the app is in a constant restart cycle and therefore can't start. Looking at the logs the st_app.py file is not being copied to the workdir in the container and therefore the container fails to start.
1 parent 77b7215 commit 7d484ea

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ COPY setup.py .
77
COPY .streamlit .streamlit
88
COPY defaults defaults
99
COPY src src
10+
COPY st_app.py st_app.py
1011
RUN pip install -q .
1112

1213
CMD ["streamlit", "run", "st_app.py"]

0 commit comments

Comments
 (0)