Update Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
@@ -6,6 +6,13 @@ COPY ./requirements.txt /code/requirements.txt
|
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
RUN useradd -m -u 1000 user
|
10 |
|
11 |
USER user
|
|
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
+
RUN apt-get update && apt-get install -y \
|
10 |
+
libgl1-mesa-glx \
|
11 |
+
libglib2.0-0 \
|
12 |
+
libsm6 \
|
13 |
+
libxrender1 \
|
14 |
+
&& rm -rf /var/lib/apt/lists/*
|
15 |
+
|
16 |
RUN useradd -m -u 1000 user
|
17 |
|
18 |
USER user
|