Spaces:
Runtime error
Runtime error
add "app.py" to streamlit run command
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -12,4 +12,4 @@ WORKDIR /app
|
|
12 |
COPY . .
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|
15 |
-
ENTRYPOINT ["streamlit", "run", "--server.address", "0.0.0.0", "--server.port", "7860"]
|
|
|
12 |
COPY . .
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|
15 |
+
ENTRYPOINT ["streamlit", "run", "app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]
|