yonikremer commited on
Commit
81b6ff1
1 Parent(s): 10ffef0

Fixed permission error

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -10
Dockerfile CHANGED
@@ -6,15 +6,5 @@ COPY ./requirements.txt /app/requirements.txt
6
 
7
  RUN pip install --no-cache-dir -r /app/requirements.txt
8
 
9
- RUN useradd -m -u 1000 user
10
- USER user
11
- ENV HOME /home/user
12
- ENV PATH $HOME/.local/bin:$PATH
13
-
14
- WORKDIR $HOME
15
- RUN mkdir app
16
- WORKDIR $HOME/app
17
- COPY . $HOME/app
18
-
19
  EXPOSE 7860
20
  CMD streamlit run app.py
 
6
 
7
  RUN pip install --no-cache-dir -r /app/requirements.txt
8
 
 
 
 
 
 
 
 
 
 
 
9
  EXPOSE 7860
10
  CMD streamlit run app.py