From 567ef9637e991e4b0f641bcad47359d1148cf822 Mon Sep 17 00:00:00 2001 From: Zach White Date: Fri, 16 Jul 2021 13:06:44 -0700 Subject: [PATCH] fix the docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ceca25a..6caf50c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM qmkfm/base_container # Copy package in -COPY dist /tmp +ADD dist /tmp/dist # Install python packages -RUN python3 -m pip uninstall qmk || true +RUN python3 -m pip uninstall -y qmk || true RUN python3 -m pip install --upgrade pip setuptools wheel nose2 && \ python3 -m pip install /tmp/dist/qmk-*.whl && \ rm -rf /tmp/dist