File size: 147 Bytes
3115642
929fd9d
3115642
 
f1cf798
3115642
 
929fd9d
 
1
2
3
4
5
6
7
8
9
FROM python:3.10-slim

COPY requirements.txt .

RUN pip install --user --no-cache-dir -r requirements.txt

COPY . .

CMD ["mlserver", "start", "."]