thewise commited on
Commit
afe93d9
·
verified ·
1 Parent(s): 1a1dda1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,10 +4,10 @@ RUN apt-get update && apt-get install -y build-essential curl git && rm -rf /var
4
 
5
  WORKDIR /app
6
 
7
- # Copy application files as the non-root user to avoid permission issues
8
  COPY . /app
9
 
10
- # Install dependencies, ensuring the streamlit executable is in PATH
11
  RUN pip install --upgrade pip && pip install --user -r requirements.txt
12
 
13
  ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
 
4
 
5
  WORKDIR /app
6
 
7
+ # Copy applicatio
8
  COPY . /app
9
 
10
+ # Install dependencies
11
  RUN pip install --upgrade pip && pip install --user -r requirements.txt
12
 
13
  ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]