Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Vinbor
/
uptime
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
uptime
/
Dockerfile
Vinbor
Update Dockerfile
f94e29e
verified
almost 2 years 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"
]