File size: 109 Bytes
f6b6982
 
 
 
 
1
2
3
4
5
FROM python:3.10.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "server.py"]