FROM python:3.11.1-alpine3.17 WORKDIR /usr/src/app COPY . . RUN pip install -r requirements.txt RUN chmod +x entrypoint.sh CMD ["entrypoint.sh"]