FROM python:3-alpine COPY . /app WORKDIR /app VOLUME /app/out RUN pip install -r requirements.txt ENTRYPOINT [ "/app/entrypoint.sh" ] CMD [ "start" ]