5258-vikram commited on
Commit
c9eccd1
β€’
1 Parent(s): 1583e93

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -10,7 +10,10 @@ COPY process_one.sh /app/process_one.sh
10
  COPY process_two.sh /app/process_two.sh
11
  COPY main.sh /app/main.sh
12
 
13
-
 
 
 
14
  COPY home.py /frontend/home.py
15
  COPY streaming.py /frontend/streaming.py
16
  COPY utils.py /frontend/utils.py
 
10
  COPY process_two.sh /app/process_two.sh
11
  COPY main.sh /app/main.sh
12
 
13
+ RUN useradd -m -u 1000 user
14
+ USER user
15
+ ENV HOME=/home/user \
16
+ PATH=/home/user/.local/bin:$PATH
17
  COPY home.py /frontend/home.py
18
  COPY streaming.py /frontend/streaming.py
19
  COPY utils.py /frontend/utils.py