Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sugar404
/
uptime-kuma
like
1
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3cfe20a
uptime-kuma
/
Dockerfile
sugar404
Update Dockerfile
3cfe20a
verified
8 months ago
raw
Copy download link
history
blame
Safe
155 Bytes
FROM
chipsman/uptime-kuma:latest
# 安装 Node.js
RUN
apk update && \
apk
add
--no-cache nodejs npm
EXPOSE 3001
CMD [
"node"
"server/server.js"
]