FROM fuqingxu/bbdown RUN apt update && apt-get install -y python3 python3-dev python3-pip RUN python3 -m pip install fastapi pydantic loguru --break-system-packages RUN python3 -m pip install requests python-multipart --break-system-packages RUN python3 -m pip install uvicorn --break-system-packages COPY ./docker_as_a_service /docker_as_a_service WORKDIR /docker_as_a_service # ENTRYPOINT [ "python3", "docker_as_a_service.py" ] ENTRYPOINT ["/bin/bash", "-c"] CMD ["python3 docker_as_a_service.py"] # CMD ["python3", "docker_as_a_service.py"]