-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile.bookworm
More file actions
65 lines (59 loc) · 1.7 KB
/
Dockerfile.bookworm
File metadata and controls
65 lines (59 loc) · 1.7 KB
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
59
60
61
62
63
64
65
FROM buildpack-deps:bookworm-curl
ADD common/retry /usr/local/bin
ADD common/dpkg-trim.conf /etc/dpkg/dpkg.cfg.d/01trim
ADD https://github.com/vishnubob/wait-for-it/raw/master/wait-for-it.sh /usr/local/bin/
RUN set -ex; \
chmod +x \
/usr/local/bin/retry \
/usr/local/bin/wait-for-it.sh \
; \
useradd --system testuser; \
:
RUN set -ex; \
curl -o /etc/apt/trusted.gpg.d/apt.postgresql.org.asc --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc ; \
echo "deb http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main" > /etc/apt/sources.list.d/pgdg.list; \
mkdir -p /etc/postgresql-common/createcluster.d/; \
echo "create_main_cluster = false" > /etc/postgresql-common/createcluster.d/no-main-cluster.conf; \
apt-get update -y; \
apt-get install -y --no-install-recommends \
bats \
bzip2 \
gawk \
git \
jq \
locales \
make \
netbase \
openssh-client \
parallel \
postgresql-client \
procps \
rsync \
shellcheck \
sudo \
tini \
unzip \
xz-utils \
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 \
; \
:
RUN set -ex; \
sed -i '/^# en_US.UTF-8/s/^# //' /etc/locale.gen; \
grep ^en_US /etc/locale.gen; \
locale-gen; \
:
RUN set -ex; \
curl -Lo gh.deb https://github.com/cli/cli/releases/download/v2.83.1/gh_2.83.1_linux_amd64.deb; \
dpkg -i gh.deb; \
rm -f gh.deb; \
gh --version; \
:
ENTRYPOINT ["/usr/bin/tini", "-gw", "--"]