mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
# If the image changed, the second stage image should be changed too
 | 
						|
FROM node:20-bookworm-slim AS base2-slim
 | 
						|
ARG TARGETPLATFORM
 | 
						|
 | 
						|
# Specify --no-install-recommends to skip unused dependencies, make the base much smaller!
 | 
						|
# apprise = for notifications (From testing repo)
 | 
						|
# 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 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  \
 | 
						|
        iputils-ping  \
 | 
						|
        util-linux  \
 | 
						|
        dumb-init  \
 | 
						|
        curl  \
 | 
						|
        sudo \
 | 
						|
        nscd && \
 | 
						|
    rm -rf /var/lib/apt/lists/* && \
 | 
						|
    apt --yes autoremove
 | 
						|
 | 
						|
 | 
						|
# Install cloudflared
 | 
						|
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 && \
 | 
						|
    rm -rf /var/lib/apt/lists/* && \
 | 
						|
    apt --yes autoremove
 | 
						|
 | 
						|
# For nscd
 | 
						|
COPY ./docker/etc/nscd.conf /etc/nscd.conf
 | 
						|
COPY ./docker/etc/sudoers /etc/sudoers
 | 
						|
 | 
						|
 | 
						|
# Full Base Image
 | 
						|
# MariaDB, Chromium and fonts
 | 
						|
FROM base2-slim AS base2
 | 
						|
ENV UPTIME_KUMA_ENABLE_EMBEDDED_MARIADB=1
 | 
						|
RUN apt update && \
 | 
						|
    apt --yes --no-install-recommends install chromium fonts-indic fonts-noto fonts-noto-cjk mariadb-server && \
 | 
						|
    rm -rf /var/lib/apt/lists/* && \
 | 
						|
    apt --yes autoremove && \
 | 
						|
    chown -R node:node /var/lib/mysql
 |