Merge branch 'bugfix/docker_gdb_python_v3.3' into 'release/v3.3'

tools/docker: Add libpython2.7 in order to satisfy GDB dependencies (backport v3.3)

See merge request espressif/esp-idf!10310
This commit is contained in:
Ivan Grokhotkov
2020-12-17 23:16:26 +08:00

View File

@@ -2,6 +2,7 @@ FROM ubuntu:18.04
ARG DEBIAN_FRONTEND=noninteractive
# We need libpython2.7 due to GDB tools
RUN apt-get update && apt-get install -y \
apt-utils \
bison \
@@ -17,6 +18,7 @@ RUN apt-get update && apt-get install -y \
libusb-1.0-0-dev \
make \
ninja-build \
libpython2.7 \
python3 \
python3-pip \
unzip \