Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cacode
/
uptime
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c4f77c8
uptime
/
Dockerfile
cacode
Create Dockerfile
88170e0
verified
3 months ago
raw
Copy download link
history
blame
Safe
238 Bytes
FROM
chipsman/uptime-kuma:latest
# 安装 Node.js
RUN
apk update && \
apk add --no-cache nodejs npm
# 设置目录权限
RUN
mkdir
-p /app/data &&
chown
-R node:node /app
USER
node
EXPOSE
3001
CMD
[
"node"
,
"server/server.js"
]