File size: 116 Bytes
fe893f9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.11-slim

WORKDIR /app

COPY pyproject.toml .
RUN pip install .

COPY . .

CMD ["python", "server.py"]