uptime-kuma / Dockerfile
sugar404's picture
Update Dockerfile
3cfe20a verified
raw
history blame
No virus
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"]