Spaces:
Sleeping
Sleeping
Jami Pekkanen
commited on
Commit
·
64c9aa2
1
Parent(s):
03636b9
apt-get as root
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
FROM python:3.9
|
2 |
|
|
|
3 |
|
4 |
# Set up a new user named "user" with user ID 1000
|
5 |
RUN useradd -m -u 1000 user
|
@@ -15,7 +16,6 @@ WORKDIR /code
|
|
15 |
|
16 |
COPY ./requirements.txt /code/requirements.txt
|
17 |
|
18 |
-
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y graphviz
|
19 |
|
20 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
21 |
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y graphviz
|
4 |
|
5 |
# Set up a new user named "user" with user ID 1000
|
6 |
RUN useradd -m -u 1000 user
|
|
|
16 |
|
17 |
COPY ./requirements.txt /code/requirements.txt
|
18 |
|
|
|
19 |
|
20 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
21 |
|