Demosthene-OR commited on
Commit
b54a80b
1 Parent(s): 6746f70

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -2
Dockerfile CHANGED
@@ -1,12 +1,28 @@
1
 
 
2
  FROM python:3.10
3
 
 
4
  WORKDIR /code
5
 
 
6
  COPY ./requirements.txt /code/requirements.txt
7
 
 
8
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
9
 
10
- COPY . .
 
 
 
 
 
 
11
 
12
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
 
 
1
 
2
+ # Use the official Python 3.9 image
3
  FROM python:3.10
4
 
5
+ # Set the working directory to /code
6
  WORKDIR /code
7
 
8
+ # Copy the current directory contents into the container at /code
9
  COPY ./requirements.txt /code/requirements.txt
10
 
11
+ # Install requirements.txt
12
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
 
14
+ # Set up a new user named "user" with user ID 1000
15
+ RUN useradd -m -u 1000 user
16
+ # Switch to the "user" user
17
+ USER user
18
+ # Set home to the user's home directory
19
+ ENV HOME=/home/user \
20
+ PATH=/home/user/.local/bin:$PATH
21
 
22
+ # Set the working directory to the user's home directory
23
+ WORKDIR $HOME/app
24
+
25
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
26
+ COPY --chown=user . $HOME/app
27
+
28
+ CMD ["uvicorn", "main_dl:api", "--host", "0.0.0.0", "--port", "7860"]