File size: 744 Bytes
34ac963
8caa6e7
41e3c8b
 
 
 
f515911
e8f08b1
41e3c8b
 
 
 
 
 
 
34ac963
 
 
 
 
8caa6e7
34ac963
 
f515911
34ac963
8caa6e7
 
 
 
 
 
 
 
 
 
 
 
 
1f1eba6
be66b6a
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
FROM python:3.9

FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04

ARG DEBIAN_FRONTEND=noninteractive



RUN apt-get update && apt-get install --no-install-recommends -y \
  build-essential \
  python3.9 \
  python3-pip \
  git \
  ffmpeg \
  && apt-get clean && rm -rf /var/lib/apt/lists/*

WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

# For hugging face
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

RUN pip install pyngrok

#set up working directory
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
#end of dir set up


CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]