Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sugar404
/
status
like
1
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0baf33d
status
/
Dockerfile
sugar404
Create Dockerfile
0baf33d
verified
over 1 year 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"
]