File size: 382 Bytes
d5c620e 084a5f0 d5c620e 084a5f0 1128560 084a5f0 4cacd20 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM ubuntu
EXPOSE 8000
WORKDIR /app
RUN apt update
RUN apt install -y git python3 python3-pip
RUN apt install -y libsasl2-dev python-dev libldap2-dev libssl-dev
COPY requirements.txt ./requirements.txt
RUN pip3 install pyOpenSSL uvicorn[standard]
RUN pip3 install -r requirements.txt
RUN pip3 install transformers -U
COPY . .
CMD python3 -m uvicorn --host 0.0.0.0 main:app --reload |