sugar404 commited on
Commit
3cfe20a
1 Parent(s): 9bbeca0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -1,8 +1,9 @@
1
  FROM chipsman/uptime-kuma:latest
2
 
3
- # Install Node.js
4
- RUN apt-get update && \
5
- apt-get install -y nodejs npm
 
6
 
7
  EXPOSE 3001
8
 
 
1
  FROM chipsman/uptime-kuma:latest
2
 
3
+
4
+ # 安装 Node.js
5
+ RUN apk update && \
6
+ apk add --no-cache nodejs npm
7
 
8
  EXPOSE 3001
9