File size: 876 Bytes
6e06893
 
 
 
 
 
 
 
 
 
 
 
 
 
bdd82cb
 
 
 
 
 
 
 
 
 
6e06893
 
 
 
b6d1936
bdd82cb
b6d1936
bdd82cb
b6d1936
 
be8ba15
b6d1936
be8ba15
b6d1936
be8ba15
a1afdd6
be8ba15
afa1a9e
6e06893
afa1a9e
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
FROM debian

RUN apt-get update

RUN apt-get install -y python3 pip

WORKDIR /code

COPY server/* /code/server/

RUN pip install --no-cache-dir --upgrade -r /code/server/requirements.txt --break-system-packages

RUN pip install huggingface-hub --break-system-packages

COPY web /code/web/

RUN apt-get install -y curl

RUN curl -fsSL https://deb.nodesource.com/setup_21.x | bash - && apt-get install -y nodejs

RUN cd web && npm install 

RUN cd web && npm run build

COPY entrypoint.sh /code/entrypoint.sh

RUN chmod +x /code/entrypoint.sh

# RUN useradd -m -u 1000 user

# USER user

# ENV HOME=/home/user \
#         PATH=/home/user/.local/bin:$PATH

# WORKDIR $HOME/app

# COPY --chown=user . $HOME/app

ENTRYPOINT ["/code/entrypoint.sh"]

WORKDIR /code/server

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "3000"]