radames HF staff commited on
Commit
9d67afd
1 Parent(s): cac3cb3

add dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +69 -0
  2. requirements.txt +0 -0
Dockerfile ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive \
4
+ TZ=America/Los_Angeles
5
+
6
+ ARG USE_PERSISTENT_DATA
7
+
8
+ RUN apt-get update && apt-get install -y \
9
+ git \
10
+ make build-essential libssl-dev zlib1g-dev \
11
+ libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
12
+ libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev git-lfs \
13
+ ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx \
14
+ && rm -rf /var/lib/apt/lists/* \
15
+ && git lfs install
16
+
17
+ WORKDIR /code
18
+
19
+ COPY ./requirements.txt /code/requirements.txt
20
+
21
+ # User
22
+ RUN useradd -m -u 1000 user
23
+ USER user
24
+ ENV HOME=/home/user \
25
+ PATH=/home/user/.local/bin:$PATH
26
+
27
+ # Pyenv
28
+ RUN curl https://pyenv.run | bash
29
+ ENV PATH=$HOME/.pyenv/shims:$HOME/.pyenv/bin:$PATH
30
+
31
+ ARG PYTHON_VERSION=3.10.12
32
+ # Python
33
+ RUN pyenv install $PYTHON_VERSION && \
34
+ pyenv global $PYTHON_VERSION && \
35
+ pyenv rehash && \
36
+ pip install --no-cache-dir --upgrade pip setuptools wheel && \
37
+ pip install --no-cache-dir \
38
+ datasets \
39
+ huggingface-hub "protobuf<4" "click<8.1"
40
+
41
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
42
+
43
+ # Set the working directory to /data if USE_PERSISTENT_DATA is set, otherwise set to $HOME/app
44
+ WORKDIR $HOME/app
45
+
46
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
47
+
48
+ RUN git clone https://github.com/lllyasviel/Fooocus . && \
49
+ # pin to a specific commit
50
+ git checkout 18a8c6655208c31216b83bd93381cb12993597c2 && \
51
+ # remove the next line if you're running on your own GPU
52
+ sed -i "s/image_number = gr.Slider(label='Image Number', maximum=32/image_number = gr.Slider(label='Image Number', maximum=3/" webui.py && \
53
+ pip install --no-cache-dir -r requirements_versions.txt --extra-index-url https://download.pytorch.org/whl/cu118
54
+
55
+ ENV HOME=/home/user \
56
+ PATH=/home/user/.local/bin:$PATH \
57
+ PYTHONPATH=$HOME/app \
58
+ PYTHONUNBUFFERED=1 \
59
+ GRADIO_ALLOW_FLAGGING=never \
60
+ GRADIO_NUM_PORTS=1 \
61
+ GRADIO_SERVER_NAME=0.0.0.0 \
62
+ GRADIO_THEME=huggingface \
63
+ SYSTEM=spaces
64
+
65
+ CMD ["python", "launch.py"]
66
+
67
+
68
+
69
+
requirements.txt ADDED
File without changes