iimmortall commited on
Commit
3285290
·
verified ·
1 Parent(s): 075ac4d

support docker

Browse files
Files changed (1) hide show
  1. Dockerfile +55 -0
Dockerfile ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM iimmortall/hfcuda121
2
+
3
+ RUN apt-get update && apt-get install -y wget git
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
+ PYTHONPATH=$HOME/app \
22
+ PYTHONUNBUFFERED=1 \
23
+ GRADIO_ALLOW_FLAGGING=never \
24
+ GRADIO_NUM_PORTS=1 \
25
+ GRADIO_SERVER_NAME=0.0.0.0 \
26
+ GRADIO_THEME=huggingface \
27
+ SYSTEM=spaces
28
+
29
+ # Set the working directory to the user's home directory
30
+ WORKDIR $HOME/app
31
+
32
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
33
+ COPY --chown=user . $HOME/app
34
+
35
+ CMD ["python", "app_docker.py"]
36
+
37
+
38
+ # FROM iimmortall/hfcuda121
39
+ # USER root
40
+ # # Set home to the user's home directory
41
+ # ENV GRADIO_ALLOW_FLAGGING=never \
42
+ # GRADIO_NUM_PORTS=1 \
43
+ # GRADIO_SERVER_NAME=0.0.0.0 \
44
+ # GRADIO_THEME=huggingface \
45
+ # SYSTEM=spaces \
46
+ # HF_HOME=/app/cache \
47
+ # TRANSFORMERS_CACHE=/app/cache
48
+
49
+ # WORKDIR /app
50
+
51
+ # COPY . /app
52
+
53
+ # RUN chmod -R 777 /app
54
+
55
+ # CMD ["python", "app.py"]