Spaces:
Runtime error
Runtime error
5258-vikram
commited on
Commit
β’
7ead96b
1
Parent(s):
c9eccd1
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -5,15 +5,15 @@ RUN apt-get update && \
|
|
5 |
apt-get install -y curl python3-pip python3-dev && \
|
6 |
rm -rf /var/lib/apt/lists/*
|
7 |
|
|
|
|
|
|
|
|
|
8 |
|
9 |
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 |
-
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
|
|
|
5 |
apt-get install -y curl python3-pip python3-dev && \
|
6 |
rm -rf /var/lib/apt/lists/*
|
7 |
|
8 |
+
RUN useradd -m -u 1000 user
|
9 |
+
USER user
|
10 |
+
ENV HOME=/home/user \
|
11 |
+
PATH=/home/user/.local/bin:$PATH
|
12 |
|
13 |
COPY process_one.sh /app/process_one.sh
|
14 |
COPY process_two.sh /app/process_two.sh
|
15 |
COPY main.sh /app/main.sh
|
16 |
|
|
|
|
|
|
|
|
|
17 |
COPY home.py /frontend/home.py
|
18 |
COPY streaming.py /frontend/streaming.py
|
19 |
COPY utils.py /frontend/utils.py
|