diff --git a/docker/jupyter/Dockerfile b/docker/jupyter/Dockerfile index 3d3894e..9315607 100644 --- a/docker/jupyter/Dockerfile +++ b/docker/jupyter/Dockerfile @@ -45,14 +45,13 @@ ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" # Used to build deps + create our virtual environment ################################ FROM python-base as builder-base -RUN apt-get update \ - && apt-get install --no-install-recommends -y \ - # deps for installing poetry - curl \ - # deps for building python deps - build-essential \ - # git - git +RUN apt-get update +RUN apt-get install -y git +RUN apt-get install --no-install-recommends -y \ + # deps for installing poetry + curl \ + # deps for building python deps + build-essential # install poetry - respects $POETRY_VERSION & $POETRY_HOME # The --mount will mount the buildx cache directory to where