FROM jupyter/minimal-notebook COPY --chown=1000 requirements.txt /tmp/ COPY --chown=1000 postBuild /tmp/ RUN pip install -r /tmp/requirements.txt \ && rm /tmp/requirements.txt RUN /tmp/postBuild \ && rm /tmp/postBuild