chaoxu commited on
Commit
3b93fb0
1 Parent(s): c00d72e

bpy dependencies

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -2
Dockerfile CHANGED
@@ -1,12 +1,22 @@
1
  FROM python:3.10-slim
2
 
 
 
3
  ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
4
  ENV TZ=America/Los_Angeles
5
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
6
 
7
  RUN apt-get update && apt-get install -y --no-install-recommends \
8
- curl
9
-
 
 
 
 
 
 
 
 
10
 
11
  RUN pip3 install --no-cache-dir \
12
  numpy \
 
1
  FROM python:3.10-slim
2
 
3
+ LABEL version="1.0.2"
4
+
5
  ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
6
  ENV TZ=America/Los_Angeles
7
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
8
 
9
  RUN apt-get update && apt-get install -y --no-install-recommends \
10
+ curl \
11
+ libx11-6 \
12
+ libxrender1 \
13
+ libxxf86vm1 \
14
+ libxfixes3 \
15
+ libxi6 \
16
+ libxkbcommon0 \
17
+ libgomp1 \
18
+ libsm6 \
19
+ libgl1
20
 
21
  RUN pip3 install --no-cache-dir \
22
  numpy \