-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
47 lines (45 loc) · 785 Bytes
/
Dockerfile
File metadata and controls
47 lines (45 loc) · 785 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
44
45
46
47
FROM debian:forky-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN \
apt update && \
apt upgrade -y && \
ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime && \
apt install -y \
ccache \
docbook-simple \
docbook-xsl \
gcc \
gettext \
git \
gpgsm \
jimsh \
libgdbm-dev \
libgnutls28-dev \
libgpgme-dev \
libgsasl-dev \
libgss-dev \
libidn2-dev \
libkrb5-dev \
liblmdb-dev \
liblua5.2-dev \
liblz4-dev \
libncurses-dev \
libnotmuch-dev \
libpcre2-dev \
librocksdb-dev \
libsasl2-dev \
libsqlite3-dev \
libssl-dev \
libtdb-dev \
libxml2-utils \
libzstd-dev \
lua5.2 \
lynx \
make \
mandoc \
tzdata \
w3m \
xsltproc && \
dpkg-reconfigure --frontend noninteractive tzdata && \
apt autoclean && \
apt autoremove