File size: 267 Bytes
bebcb28
db268fd
 
 
558718e
 
 
 
 
db268fd
558718e
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.8

COPY . /app

RUN !pip3 install -r requirements.txt --no-deps
    !pip3 install -e .
    !pip3 install git+https://github.com/152334H/BigVGAN.git
    !pip uninstall transformers
    !pip install transformers==4.29.2

ENTRYPOINT["/app/tortoise/api.py"]