Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sugar404
/
uptime-kuma
like
0
Paused
App
Files
Files
Community
946a168
uptime-kuma
/
Dockerfile
sugar404
Update Dockerfile
946a168
verified
6 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"
]