9705b6c
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.9 WORKDIR /app COPY server.py . COPY requirements.txt . RUN pip install -r requirements.txt RUN rm requirements.txt CMD ["python", "server.py"]