Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mikeee
/
uptime-kuma
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
43b9eb2
uptime-kuma
/
Dockerfile
mikeee
Update Dockerfile
43b9eb2
verified
10 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
FROM
chipsman/uptime-kuma:latest
RUN
<< EOF
apk update
apk
add
--no-cache nodejs npm
mkdir -p /app/data
chown -R appuser:appuser /app
EOF
USER appuser
EXPOSE 3001
CMD [
"node"
,
"server/server.js"
]