forked from fscarmen2/Argo-Nezha-Service-Container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
21 lines (15 loc) · 784 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ghcr.io/naiba/nezha-dashboard
EXPOSE 80
WORKDIR /dashboard
COPY entrypoint.sh /dashboard/
COPY sqlite.db /dashboard/data/
RUN apt-get update &&\
apt-get -y install openssh-server wget iproute2 vim git cron unzip supervisor systemctl nginx &&\
wget -O nezha-agent.zip https://github.com/naiba/nezha/releases/latest/download/nezha-agent_linux_$(uname -m | sed "s#x86_64#amd64#; s#aarch64#arm64#").zip &&\
unzip nezha-agent.zip &&\
wget -O cloudflared.deb https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-$(uname -m | sed "s#x86_64#amd64#; s#aarch64#arm64#").deb &&\
dpkg -i cloudflared.deb &&\
rm -f nezha-agent.zip cloudflared.deb &&\
touch /dbfile &&\
chmod +x entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]