shekharp77 commited on
Commit
b501139
·
1 Parent(s): 83982dc

first commit

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -3,6 +3,14 @@
3
 
4
  FROM python:3.9
5
 
 
 
 
 
 
 
 
 
6
  WORKDIR /code
7
 
8
  COPY requirements.txt /code/requirements.txt
 
3
 
4
  FROM python:3.9
5
 
6
+ # Set up a new user named "user" with user ID 1000
7
+ RUN useradd -m -u 1000 user
8
+
9
+ # Switch to the "user" user
10
+ USER user
11
+
12
+ COPY --chown=user /.cache
13
+
14
  WORKDIR /code
15
 
16
  COPY requirements.txt /code/requirements.txt