hjm1a commited on
Commit
d5c3560
1 Parent(s): 1042a2d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1,6 +1,11 @@
1
  FROM nextcloud/all-in-one:latest
2
 
3
- ENV PATH=/sbin:$PATH
 
 
 
 
 
4
 
5
  VOLUME ["/mnt/docker-aio-config"]
6
 
 
1
  FROM nextcloud/all-in-one:latest
2
 
3
+ RUN useradd -m -u 1000 user
4
+
5
+ USER user
6
+
7
+ ENV HOME=/home/user \
8
+ PATH=/home/user/.local/bin:$PATH
9
 
10
  VOLUME ["/mnt/docker-aio-config"]
11