Skip to content

Commit

Permalink
adding symbolic
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesus Alcocer Tagua committed Oct 27, 2024
1 parent 57c0651 commit 332897f
Show file tree
Hide file tree
Showing 14 changed files with 147,983 additions and 28 deletions.
21 changes: 21 additions & 0 deletions Dockerfile_Streamlit
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
Loading

0 comments on commit 332897f

Please sign in to comment.