Conda, pip or something else for building containers

Hello, @Roy_Dragseth

I’m creating a custom image using below Dockerfile
This image based on the tensorflow-notebook image.

FROM quay.io/jupyter/tensorflow-notebook

COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/
RUN pip install -r /tmp/requirements.txt && \
    fix-permissions "${CONDA_DIR}" && \
    fix-permissions "/home/${NB_USER}"

COPY overrides.json ${CONDA_DIR}/share/jupyter/lab/settings/overrides.json

This link may also help.