-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathDockerfile.base
More file actions
43 lines (40 loc) · 941 Bytes
/
Dockerfile.base
File metadata and controls
43 lines (40 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM python-base:v1.0.0
ENV LANG=C.UTF-8 \
LANGUAGE=C.UTF-8 \
LC_ALL=C.UTF-8
# Install dependencies
RUN apt-get update && apt-get install -y \
locales \
libxcb-xinerama0 \
libxcb-shape0 \
libxcb-cursor0 \
libxcb-icccm4 \
libxcb-image0 \
libxcb1 \
libxcb-keysyms1 \
libxcb-render-util0 \
libfontconfig1 \
libxcb-randr0 \
libxcb-shm0 \
libxcb-xkb1 \
libssl3 \
libssl-dev \
libgl1-mesa-dev \
libxkbcommon-x11-0 \
libglib2.0-dev \
libgl1-mesa-glx \
libdbus-1-3 \
libegl1 \
uuid-runtime \
libatomic1 \
openjdk-17-jre-headless \
wget \
unzip \
git \
procps && \
rm -rf /var/lib/apt/lists/*
# Set up locale
RUN locale-gen C.UTF-8 && update-locale LANG=C.UTF-8 && \
echo "export LANG=C.UTF-8" >> /etc/profile && \
echo "export LANGUAGE=C.UTF-8" >> /etc/profile && \
echo "export LC_ALL=C.UTF-8" >> /etc/profile