Hello4
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -10,8 +10,12 @@ RUN apt-get update && \
|
|
10 |
|
11 |
RUN pip install --upgrade pip
|
12 |
|
|
|
|
|
13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
14 |
|
|
|
|
|
15 |
RUN useradd -m -u 1000 user
|
16 |
|
17 |
USER user
|
|
|
10 |
|
11 |
RUN pip install --upgrade pip
|
12 |
|
13 |
+
RUN apt-get install cmake
|
14 |
+
|
15 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
16 |
|
17 |
+
RUN pip install --upgrade requests
|
18 |
+
|
19 |
RUN useradd -m -u 1000 user
|
20 |
|
21 |
USER user
|