FROM python:3.11-slim-bookworm WORKDIR /app COPY ./app . # fetch go libs and build the binary with debug information removed RUN \ pip install -r requirements.txt WORKDIR /app ENTRYPOINT ["/app/run.sh"]