| 12345678910111213141516171819202122232425 | FROM alpine:3.17LABEL maintainer "The Infrastructure Company GmbH <info@servercow.de>"WORKDIR /appRUN apk add --update --no-cache python3 \  py3-pip \  openssl \  tzdata \  py3-psutil \&& pip3 install --upgrade pip \  fastapi \  uvicorn \  aiodocker \  docker \  aioredis RUN mkdir /app/modulesCOPY docker-entrypoint.sh /app/COPY main.py /app/main.pyCOPY modules/ /app/modules/ENTRYPOINT ["/bin/sh", "/app/docker-entrypoint.sh"]CMD exec python main.py
 |