Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -16,8 +16,9 @@ WORKDIR $HOME/app
|
|
| 16 |
COPY --chown=user requirements.txt .
|
| 17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 18 |
|
| 19 |
-
# Copy the app code
|
| 20 |
COPY --chown=user . .
|
|
|
|
| 21 |
|
| 22 |
# Expose Streamlit port
|
| 23 |
EXPOSE 8501
|
|
|
|
| 16 |
COPY --chown=user requirements.txt .
|
| 17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 18 |
|
| 19 |
+
# Copy the app code and startup script
|
| 20 |
COPY --chown=user . .
|
| 21 |
+
RUN chmod +x start.sh
|
| 22 |
|
| 23 |
# Expose Streamlit port
|
| 24 |
EXPOSE 8501
|