From 53ff855c0490ba7ee50fbe429d4e2058671e885c Mon Sep 17 00:00:00 2001 From: wesuuu Date: Wed, 24 Aug 2022 13:38:59 -0700 Subject: [PATCH] Added conda mamba upgrade --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index c3a9e74..1874044 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,11 @@ USER root ARG DONKEYCAR_VERSION=4.3.22 DONKEYCAR_BRANCH=main +# https://github.com/mamba-org/mamba/issues/1403#issuecomment-1024629004 +RUN conda update conda && \ + mamba update mamba && \ + pip install ipykernel==6.7.0 + RUN mkdir /opt/local && \ cd /opt/local && \ git clone https://github.com/autorope/donkeycar -b $DONKEYCAR_BRANCH && \