laopo001 commited on
Commit
2c22d1c
·
verified ·
1 Parent(s): 64509d7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -1,5 +1,9 @@
1
  FROM ubuntu:22.04
2
 
 
 
 
 
3
  # Update package lists
4
  RUN apt-get update
5
 
 
1
  FROM ubuntu:22.04
2
 
3
+ RUN useradd -m -u 1000 user
4
+ USER user
5
+ ENV PATH="/home/user/.local/bin:$PATH"
6
+
7
  # Update package lists
8
  RUN apt-get update
9