zhixiusue commited on
Commit
3bd6f72
·
verified ·
1 Parent(s): ce1a29d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -5
Dockerfile CHANGED
@@ -6,9 +6,7 @@ ENV PATH="/home/user/.local/bin:$PATH"
6
 
7
  WORKDIR /app
8
 
9
- COPY --chown=user ./requirements.txt requirements.txt
10
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
- COPY --chown=user . .
13
-
14
- CMD ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0"]
 
6
 
7
  WORKDIR /app
8
 
9
+ COPY --chown=user . /app
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
 
12
+ CMD ["streamlit", "run", "streamlit_app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]