forked from 3mdeb/op-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
58 lines (53 loc) · 842 Bytes
/
Dockerfile
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
FROM debian:buster
MAINTAINER Piotr Król <[email protected]>
RUN \
useradd -p locked -m user && \
apt-get -qq update && \
apt-get -qqy install \
bc \
bin86 \
bison \
build-essential \
ccache \
cpio \
cscope \
ctags \
flex \
gawk \
gcc \
gettext \
git \
gnat \
g++ \
libssl-dev \
libxml-simple-perl \
libxml-sax-perl \
libxml2-dev \
libxml2-utils \
libz-dev \
libexpat-dev \
locales \
locales-all \
make \
pkg-config \
patch \
python \
python-dev \
python3-dev \
python-twisted \
openssl \
rsync \
texinfo \
unzip \
wget \
xsltproc \
xxd \
xz-utils \
&& apt-get clean
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV PATH="/usr/lib/ccache:${PATH}"
RUN mkdir /home/user/.ccache && \
chown user:user /home/user/.ccache
USER user