mikeee commited on
Commit
43b9eb2
·
verified ·
1 Parent(s): 4dbd057

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -1,13 +1,13 @@
1
  FROM chipsman/uptime-kuma:latest
2
 
3
  RUN << EOF
4
- apk update
5
- apk add --no-cache nodejs npm
6
- mkdir -p /app/data
7
- chown -R user:user /app
8
  EOF
9
 
10
- USER user
11
 
12
  EXPOSE 3001
13
 
 
1
  FROM chipsman/uptime-kuma:latest
2
 
3
  RUN << EOF
4
+ apk update
5
+ apk add --no-cache nodejs npm
6
+ mkdir -p /app/data
7
+ chown -R appuser:appuser /app
8
  EOF
9
 
10
+ USER appuser
11
 
12
  EXPOSE 3001
13