Daniela-C commited on
Commit
c6e642b
·
verified ·
1 Parent(s): 33bcc4c

Update nyc_taxi_app.py

Browse files
Files changed (1) hide show
  1. 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 --upgrade -r requirements.txt
7
 
8
- COPY --chown=user . /app
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