File size: 225 Bytes
14c49ec
 
8f09942
14c49ec
 
 
 
 
 
 
a5923e4
1
2
3
4
5
6
7
8
9
10
11
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime

WORKDIR /src

COPY . .

RUN pip install --upgrade pip && pip install -r requirements.txt

EXPOSE 8000

CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"]