From 393c7e70240ccb83dd06af1e5ec1c3d18f5444f7 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Sun, 4 Dec 2022 20:19:16 +0100 Subject: [PATCH] fix in dependencies --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8fc1eb..6d50106 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ ENV USER esp32 RUN \ apt update && \ - apt install -y python3 python3-pip vim.tiny python-serial \ - python3-serial flex bison gperf cmake ninja-build \ - ccache libffi-dev libssl-dev dfu-util && \ + apt install -y git wget flex bison gperf python3 python3-venv cmake \ + ninja-build ccache libffi-dev libssl-dev dfu-util \ + libusb-1.0-0 update-alternatives --install /usr/bin/python python /usr/bin/python3 10 && \ update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 10 && \ groupadd -r -g $GID $USER && \