# # NOTE: Use the Makefiles to build this image correctly. # ARG BASE_IMG= FROM $BASE_IMG # args - software versions # https://github.com/tensorflow/tensorflow/releases ARG TENSORFLOW_VERSION=2.17.1 # install - tensorflow RUN python3 -m pip install --quiet --no-cache-dir \ tensorflow==${TENSORFLOW_VERSION} # install - requirements.txt COPY --chown=${NB_USER}:${NB_GID} requirements.txt /tmp RUN python3 -m pip install -r /tmp/requirements.txt --quiet --no-cache-dir \ && rm -f /tmp/requirements.txt