2021-10-01 09:28:00 +00:00
|
|
|
# If the image changed, the second stage image should be changed too
|
2023-07-30 15:47:07 +00:00
|
|
|
FROM node:20-bookworm-slim AS base2-slim
|
2022-03-28 18:24:10 +00:00
|
|
|
ARG TARGETPLATFORM
|
|
|
|
|
2021-10-01 09:28:00 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
2023-07-24 09:04:50 +00:00
|
|
|
# Specify --no-install-recommends to skip unused dependencies, make the base much smaller!
|
2023-07-30 15:47:07 +00:00
|
|
|
# apprise = for notifications (From testing repo)
|
2023-07-24 09:04:50 +00:00
|
|
|
# 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
|
2023-07-30 15:47:07 +00:00
|
|
|
RUN echo "deb http://deb.debian.org/debian testing main" >> /etc/apt/sources.list && \
|
|
|
|
apt update && \
|
|
|
|
apt --yes --no-install-recommends -t testing install apprise sqlite3 ca-certificates && \
|
|
|
|
apt --yes --no-install-recommends -t stable install \
|
2023-07-24 09:04:50 +00:00
|
|
|
iputils-ping \
|
|
|
|
util-linux \
|
|
|
|
dumb-init \
|
|
|
|
curl \
|
|
|
|
sudo \
|
|
|
|
nscd && \
|
2022-06-15 07:18:14 +00:00
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
|
|
apt --yes autoremove
|
2022-03-28 18:24:10 +00:00
|
|
|
|
2023-07-30 11:15:09 +00:00
|
|
|
|
2022-03-28 18:24:10 +00:00
|
|
|
# Install cloudflared
|
2023-06-30 09:26:37 +00: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 && \
|
2023-07-30 15:47:07 +00:00
|
|
|
apt install --yes --no-install-recommends -t stable cloudflared && \
|
2023-04-24 03:09:31 +00:00
|
|
|
cloudflared version && \
|
2022-03-28 18:24:10 +00:00
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
2022-06-15 07:18:14 +00:00
|
|
|
apt --yes autoremove
|
2022-03-28 18:24:10 +00:00
|
|
|
|
2023-07-24 09:04:50 +00:00
|
|
|
# For nscd
|
|
|
|
COPY ./docker/etc/nscd.conf /etc/nscd.conf
|
|
|
|
COPY ./docker/etc/sudoers /etc/sudoers
|
|
|
|
|
2023-07-30 11:15:09 +00:00
|
|
|
|
2023-06-30 09:26:37 +00:00
|
|
|
# Full Base Image
|
|
|
|
# MariaDB, Chromium and fonts
|
|
|
|
# Not working for armv7, so use the older version (10.5) of MariaDB from the debian repo
|
|
|
|
# curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | bash -s -- --mariadb-server-version="mariadb-11.1" && \
|
2023-02-05 09:45:36 +00:00
|
|
|
FROM base2-slim AS base2
|
2023-06-30 14:17:07 +00:00
|
|
|
ENV UPTIME_KUMA_ENABLE_EMBEDDED_MARIADB=1
|
2023-02-05 09:45:36 +00:00
|
|
|
RUN apt update && \
|
2023-06-30 09:26:37 +00:00
|
|
|
apt --yes --no-install-recommends install chromium fonts-indic fonts-noto fonts-noto-cjk mariadb-server && \
|
2023-02-05 09:45:36 +00:00
|
|
|
apt --yes remove curl && \
|
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
2023-06-30 09:26:37 +00:00
|
|
|
apt --yes autoremove && \
|
|
|
|
chown -R node:node /var/lib/mysql
|