oliver9523 commited on
Commit
ec48498
·
1 Parent(s): 92cb557

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -13
Dockerfile CHANGED
@@ -1,20 +1,28 @@
1
- # Use an official Python runtime as a parent image
2
- FROM python:3.8
3
 
4
- # Set the working directory to /app
5
- WORKDIR /app
6
 
7
- # Copy the current directory contents into the container at /app
8
- COPY . /app
9
 
10
- # Install any needed packages specified in requirements.txt
11
- RUN pip install gradio huggingface_hub transformers geti_sdk
12
 
13
- # Make port 7860 available to the world outside this container
14
- EXPOSE 7860
15
 
16
- # Define environment variable
17
- ENV GRADIO_SERVER_NAME="my_gradio_app"
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- # Run app.py when the container launches
20
  CMD ["python", "app.py"]
 
1
+ # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
 
4
+ FROM python:3.9
 
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 ["python", "app.py"]