heymenn commited on
Commit
1da0219
·
verified ·
1 Parent(s): edbf3f2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -1,5 +1,11 @@
1
  FROM python:3.13.5-slim
2
 
 
 
 
 
 
 
3
  WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y \
 
1
  FROM python:3.13.5-slim
2
 
3
+ # Set up a new user named "user" with user ID 1000
4
+ RUN useradd -m -u 1000 user
5
+
6
+ # Switch to the "user" user
7
+ USER user
8
+
9
  WORKDIR /app
10
 
11
  RUN apt-get update && apt-get install -y \