FROM python:3.10 RUN useradd -ms /bin/bash user RUN mkdir /data && chown user /data USER user ADD --chown=user requirements.txt /app/requirements.txt WORKDIR /app RUN pip3 install -r requirements.txt ADD --chown=user . /app RUN chmod +x /app/main.py VOLUME /data #ENTRYPOINT bash CMD ["/bin/sh", "-c", "python3 /app/main.py -d /data ; bash -i"]