| 123456789101112131415 | FROM python:3.8-slimRUN apt-get update && \    apt-get -y install libglib2.0; \    apt-get cleanWORKDIR /appCOPY ./facedetect/requirements.txt .RUN pip install -r requirements.txtCOPY ./facedetect .EXPOSE 80CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] 
 |