-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile.jammy
47 lines (43 loc) · 1.17 KB
/
Dockerfile.jammy
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 buildpack-deps:jammy-curl
ADD common/retry /usr/local/bin
ADD common/dpkg-trim.conf /etc/dpkg/dpkg.cfg.d/01trim
ADD https://github.com/krallin/tini/releases/download/v0.19.0/tini /usr/local/sbin/tini
ADD https://github.com/vishnubob/wait-for-it/raw/master/wait-for-it.sh /usr/local/bin/
ADD https://github.com/mikefarah/yq/releases/download/v4.30.6/yq_linux_amd64 /usr/local/bin/yq
RUN set -ex; \
chmod +x \
/usr/local/bin/retry \
/usr/local/bin/wait-for-it.sh \
/usr/local/bin/yq \
/usr/local/sbin/tini \
; \
useradd --system testuser; \
:
RUN set -ex; \
apt-get update -y; \
apt-get install -y --no-install-recommends \
bats \
gawk \
git \
jq \
krb5-user \
locales \
netbase \
openssh-client \
postgresql-client \
procps \
rsync \
shellcheck \
sudo \
zip \
; \
apt-get clean; \
rm -rf \
/usr/share/postgresql/*/man \
/var/lib/apt/lists/* \
/var/log/apt \
/var/log/dpkg.log \
/var/log/alternatives.log \
; \
:
ENTRYPOINT ["/usr/local/sbin/tini", "-gw", "--"]