File size: 775 Bytes
34ac963
41e3c8b
 
 
 
 
 
 
 
 
 
 
 
 
34ac963
1f1eba6
 
 
d15996f
34ac963
 
 
 
 
 
 
 
1f1eba6
 
 
 
e8a19d1
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
FROM python:3.9
FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04

ARG DEBIAN_FRONTEND=noninteractive

ENV PYTHONUNBUFFERED=1

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/*

# Set HF_HOME environment variable to specify cache directory
ENV HF_HOME=/code/.cache/huggingface


WORKDIR /code

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

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

COPY . .

# Set permissions for cache directory
RUN mkdir -p /code/.cache/huggingface/transformers \
    && chmod -R 777 /code/.cache/huggingface

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