Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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 |
|