WinterGYC commited on
Commit
934dbc8
·
1 Parent(s): 732538e
Files changed (1) hide show
  1. Dockerfile +13 -11
Dockerfile CHANGED
@@ -5,22 +5,24 @@ FROM python:3.9
5
 
6
  WORKDIR /code
7
 
8
- RUN chmod -R 777 /code
9
-
10
- RUN mkdir /code/cache
11
-
12
- ENV TRANSFORMERS_CACHE=/code/cache
13
 
14
- ENV HF_MODULES_CACHE=/code/cache
15
 
16
- ENV HUGGINGFACE_HUB_CACHE=/code/cache
 
17
 
18
- COPY ./requirements.txt /code/requirements.txt
 
19
 
20
- COPY ./app.py /code/app.py
 
 
21
 
22
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
23
 
24
- COPY . .
 
25
 
26
  CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]
 
5
 
6
  WORKDIR /code
7
 
8
+ COPY ./requirements.txt /code/requirements.txt
 
 
 
 
9
 
10
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
+ # Set up a new user named "user" with user ID 1000
13
+ RUN useradd -m -u 1000 user
14
 
15
+ # Switch to the "user" user
16
+ USER user
17
 
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 ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]