uptime-kuma / Dockerfile
sugar404's picture
Update Dockerfile
946a168 verified
raw
history blame
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"]