Manasa1 commited on
Commit
1cc3b69
·
verified ·
1 Parent(s): de7cb3b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -32,6 +32,9 @@ COPY --chown=user . $HOME/app
32
  # Copy the .env file into the container
33
  COPY --chown=user .env $HOME/app/.env
34
 
 
 
 
35
  # Start the Streamlit app
36
  CMD ["streamlit", "run", "app.py"]
37
 
 
32
  # Copy the .env file into the container
33
  COPY --chown=user .env $HOME/app/.env
34
 
35
+ # Make port 7860 available to the world outside this container
36
+ EXPOSE 7860
37
+
38
  # Start the Streamlit app
39
  CMD ["streamlit", "run", "app.py"]
40