-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.Dockerfile
More file actions
38 lines (33 loc) · 855 Bytes
/
sample.Dockerfile
File metadata and controls
38 lines (33 loc) · 855 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
ARG IMAGE
FROM $IMAGE
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
# Minimal dependencies for compiling and installing the Git binaries
dh-autoreconf \
libcurl4-gnutls-dev \
libexpat1-dev \
gettext \
zlib1g-dev \
libssl-dev \
libpcre2-dev \
make \
# Additional dependencies to add the documentation in various formats
asciidoc \
xmlto \
docbook2x \
# On a Debian-based distribution you also need the install-info package
install-info \
# Supplemental dependencies for testing CVS and mail interoperability
apache2 \
gnupg \
liberror-perl \
## CVS
cvsps \
libdbd-sqlite3-perl \
## mail
libmailtools-perl
COPY scripts/git-prompt /var/tmp/
COPY scripts/*.sh /usr/bin/
CMD ["start.sh"]