-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
53 lines (47 loc) · 867 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
FROM ubuntu:noble
COPY --from=mikecallahan/k8s-keepalive:1.0.0 /usr/bin/k8s-keepalive /usr/bin/k8s-keepalive
COPY --from=gcr.io/google.com/cloudsdktool/google-cloud-cli:debian_component_based /google-cloud-sdk /google-cloud-sdk
RUN apt update && DEBIAN_FRONTEND=noninteractive apt upgrade -y
RUN DEBIAN_FRONTEND=noninteractive apt install -y \
apt-utils \
man-db
RUN DEBIAN_FRONTEND=noninteractive apt install -y \
age \
apt-utils \
bash \
bind9-dnsutils \
ca-certificates \
curl \
eza \
fdisk \
gh \
git \
gnupg \
htop \
iproute2 \
iputils-arping \
iputils-ping \
iputils-tracepath \
mysql-client \
less \
libterm-readline-gnu-perl \
ntfs-3g \
openssh-client \
openssl \
pciutils \
perl \
postgresql-client \
python3 \
ripgrep \
screen \
snapd \
thefuck \
tmux \
tzdata \
unzip \
vim \
wget \
xdg-user-dirs \
xz-utils
EXPOSE 5000
CMD ["/usr/bin/k8s-keepalive"]