FROM python:3.10-slim COPY requirements.txt / RUN pip install --no-cache-dir --upgrade pip \ && pip install --no-cache-dir -r requirements.txt COPY server.py . CMD ["python3","./server.py"] EXPOSE 8000