-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jesus Alcocer Tagua
committed
Oct 27, 2024
1 parent
57c0651
commit 332897f
Showing
14 changed files
with
147,983 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM python:3.8 | ||
|
||
# Copy local code to the container image. | ||
ENV APP_HOME /app | ||
WORKDIR $APP_HOME | ||
COPY . ./ | ||
#source-destination | ||
|
||
# Install production dependencies. | ||
RUN pip install -r requirements.txt | ||
|
||
EXPOSE 8051 | ||
|
||
# Run the Streamlit app | ||
CMD ["streamlit", "run", "/app/app/slidercrank-streamlit.py"] | ||
|
||
|
||
#docker build -t slider-crank -f Dockerfile_Streamlit . | ||
#docker run -p 8502:8501 slider-crank | ||
#docker run -p 8502:8501 slider-crank tail -f /dev/null | ||
# streamlit run slidercrank-streamlit.py |
Oops, something went wrong.