File size: 2,120 Bytes
e27e6dc
9f4558e
e27e6dc
62d44a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e27e6dc
 
 
72b7b1c
 
e27e6dc
 
f4a0541
72b7b1c
e27e6dc
 
 
 
 
 
 
54ae738
 
 
e27e6dc
 
 
 
62d44a9
 
 
 
 
 
 
 
 
e27e6dc
 
 
bd63939
e27e6dc
72b7b1c
 
bfb5a01
e9e34da
bfb5a01
 
 
 
 
df4cb51
bfb5a01
204d52d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Use the official Python 3.11 image
FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
    apt-get upgrade -y && \
    apt-get install -y --no-install-recommends \
    git \
    git-lfs \
    wget \
    curl \
    # python build dependencies \
    build-essential \
    libssl-dev \
    zlib1g-dev \
    libbz2-dev \
    libreadline-dev \
    libsqlite3-dev \
    libncursesw5-dev \
    xz-utils \
    tk-dev \
    libxml2-dev \
    libxmlsec1-dev \
    libffi-dev \
    liblzma-dev \
    # gradio dependencies \
    ffmpeg && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*


# Copy the current directory contents into the container at /code
# COPY ./requirements.txt /code/requirements.txt
# RUN cat /code/requirements.txt

# Install requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# RUN pip install -r /code/requirements.txt

# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH \
    HF_HOME=/data/.huggingface \
    TORCH_HOME=/data/.huggingface

# Set the working directory to the user's home directory
WORKDIR $HOME/app


RUN curl https://pyenv.run | bash
ENV PATH=${HOME}/.pyenv/shims:${HOME}/.pyenv/bin:${PATH}
ARG PYTHON_VERSION=3.10.12
RUN pyenv install ${PYTHON_VERSION} && \
    pyenv global ${PYTHON_VERSION} && \
    pyenv rehash && \
    pip install --no-cache-dir -U pip setuptools wheel

# Copy the current directory contents into the container at $HOME/app setting the owner to the user
COPY --chown=user . $HOME/app

RUN git lfs install

RUN pip install -r requirements.txt

# RUN ls -lh

# WORKDIR $HOME/app/pretrained
# RUN git lfs install
# RUN git clone https://huggingface.co/stabilityai/stable-diffusion-2-1-unclip
# RUN git clone https://huggingface.co/AILab-CVC/seed-tokenizer-2
# RUn git clone https://huggingface.co/AILab-CVC/seed-llama-14b-sft

# WORKDIR $HOME/app
CMD ["bash", "start.sh"]
# CMD ["python", 'start.py']