jleibs commited on
Commit
44c6d8a
·
1 Parent(s): 573145d

Try to fix docker permissions

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -5
Dockerfile CHANGED
@@ -1,13 +1,26 @@
1
  FROM python:3.11.8
2
 
3
- # Copy the current directory contents into the container at .
4
- COPY . .
5
 
6
- # Set the working directory to /
7
- WORKDIR /
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  # Install requirements.txt
10
- RUN pip install --no-cache-dir --upgrade -r /requirements.txt
11
 
12
  # Start the FastAPI app on port 7860, the default port expected by Spaces
13
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  FROM python:3.11.8
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
+ # Set home to the user's home directory
10
+ ENV HOME=/home/user \
11
+ PATH=/home/user/.local/bin:$PATH
12
+
13
+ # Set the working directory to the user's home directory
14
+ WORKDIR $HOME/app
15
+
16
+ # Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
17
+ RUN pip install --no-cache-dir --upgrade pip
18
+
19
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
20
+ COPY --chown=user . $HOME/app
21
 
22
  # Install requirements.txt
23
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
24
 
25
  # Start the FastAPI app on port 7860, the default port expected by Spaces
26
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]