uptime-kuma/docker/debian-base.dockerfile

35 lines
1.6 KiB
Plaintext
Raw Normal View History

# If the image changed, the second stage image should be changed too
2023-06-30 09:26:37 +00:00
FROM node:18-bullseye-slim AS base2-slim
2022-03-28 18:24:10 +00:00
ARG TARGETPLATFORM
2023-06-30 09:26:37 +00:00
RUN apt update && \
apt --yes --no-install-recommends install python3 python3-pip python3-cryptography python3-six python3-yaml python3-click python3-markdown python3-requests python3-requests-oauthlib \
sqlite3 iputils-ping util-linux dumb-init git curl ca-certificates && \
2023-05-19 17:46:07 +00:00
pip3 --no-cache-dir install apprise==1.4.0 && \
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
# 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 && \
apt install --yes --no-install-recommends cloudflared && \
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-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
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