Spaces:
Runtime error
Runtime error
Update nyc_taxi_app.py
Browse files- nyc_taxi_app.py +2 -2
nyc_taxi_app.py
CHANGED
@@ -3,9 +3,9 @@ FROM python:3.10-slim
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY requirements.txt .
|
6 |
-
RUN pip install --no-cache-dir
|
7 |
|
8 |
-
COPY
|
9 |
|
10 |
ENV STREAMLIT_SERVER_HEADLESS=true
|
11 |
ENV STREAMLIT_SERVER_PORT=7860
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY requirements.txt .
|
6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
7 |
|
8 |
+
COPY . .
|
9 |
|
10 |
ENV STREAMLIT_SERVER_HEADLESS=true
|
11 |
ENV STREAMLIT_SERVER_PORT=7860
|