FROM python:3.11.5-alpine WORKDIR /usr/src/app COPY . . RUN pip install -r requirements.txt RUN chmod +x entrypoint.sh ENTRYPOINT ["./entrypoint.sh"]