uptime-kuma/docker/debian-base.dockerfile

62 lines
2.4 KiB
Plaintext
Raw Permalink Normal View History

# If the image changed, the second stage image should be changed too
FROM node:20-bookworm-slim AS base2-slim
2022-03-28 11:24:10 -07:00
ARG TARGETPLATFORM
# Specify --no-install-recommends to skip unused dependencies, make the base much smaller!
# sqlite3 = for debugging
# iputils-ping = for ping
# util-linux = for setpriv (Should be dropped in 2.0.0?)
# dumb-init = avoid zombie processes (#480)
# curl = for debugging
# ca-certificates = keep the cert up-to-date
# sudo = for start service nscd with non-root user
# nscd = for better DNS caching
RUN apt update && \
apt --yes --no-install-recommends install \
sqlite3 \
ca-certificates \
iputils-ping \
util-linux \
dumb-init \
curl \
sudo \
nscd && \
2022-06-15 00:18:14 -07:00
rm -rf /var/lib/apt/lists/* && \
apt --yes autoremove
2022-03-28 11:24:10 -07:00
# apprise = for notifications (Install from the deb package, as the stable one is too old) (workaround for #4867)
# Switching to testing repo is no longer working, as the testing repo is not bookworm anymore.
# python3-paho-mqtt (#4859)
RUN curl http://ftp.debian.org/debian/pool/main/a/apprise/apprise_1.8.0-2_all.deb --output apprise.deb && \
apt update && \
2024-06-24 04:49:37 -07:00
apt --yes --no-install-recommends install ./apprise.deb python3-paho-mqtt && \
rm -rf /var/lib/apt/lists/* && \
rm -f apprise.deb && \
apt --yes autoremove
2022-03-28 11:24:10 -07:00
# Install cloudflared
2023-06-30 02:26:37 -07:00
RUN curl https://pkg.cloudflare.com/cloudflare-main.gpg --output /usr/share/keyrings/cloudflare-main.gpg && \
echo 'deb [signed-by=/usr/share/keyrings/cloudflare-main.gpg] https://pkg.cloudflare.com/cloudflared bullseye main' | tee /etc/apt/sources.list.d/cloudflared.list && \
apt update && \
apt install --yes --no-install-recommends -t stable cloudflared && \
cloudflared version && \
2022-03-28 11:24:10 -07:00
rm -rf /var/lib/apt/lists/* && \
2022-06-15 00:18:14 -07:00
apt --yes autoremove
2022-03-28 11:24:10 -07:00
# For nscd
COPY ./docker/etc/nscd.conf /etc/nscd.conf
COPY ./docker/etc/sudoers /etc/sudoers
2023-06-30 02:26:37 -07:00
# Full Base Image
# MariaDB, Chromium and fonts
# Make sure to reuse the slim image here. Uncomment the above line if you want to build it from scratch.
# FROM base2-slim AS base2
FROM louislam/uptime-kuma:base2-slim AS base2
ENV UPTIME_KUMA_ENABLE_EMBEDDED_MARIADB=1
2023-02-05 01:45:36 -08:00
RUN apt update && \
2023-06-30 02:26:37 -07:00
apt --yes --no-install-recommends install chromium fonts-indic fonts-noto fonts-noto-cjk mariadb-server && \
2023-02-05 01:45:36 -08:00
rm -rf /var/lib/apt/lists/* && \
2023-06-30 02:26:37 -07:00
apt --yes autoremove && \
chown -R node:node /var/lib/mysql