mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
25 lines
820 B
Docker
25 lines
820 B
Docker
# syntax = edrevo/dockerfile-plus
|
|
|
|
ARG DOCKER_REGISTRY
|
|
ARG TOOLCHAIN_TAG
|
|
|
|
FROM ${DOCKER_REGISTRY}/esp32-toolchain-arm-cross:${TOOLCHAIN_TAG}
|
|
|
|
ARG TARGET_HOSTS="arm-linux-gnueabihf"
|
|
ARG OPENSSL_BUILD_PLATFORM="linux-generic32"
|
|
ARG OPENSSL_TARGET_PLATFORM="linux-armv4"
|
|
ARG TARGET_HOST="arm-linux-gnueabihf"
|
|
|
|
INCLUDE+ ./common/Dockerfile.update-apt-sources
|
|
|
|
RUN set -ex; \
|
|
apt-get update \
|
|
&& apt-get install -y -q --no-install-recommends \
|
|
libc6-dev \
|
|
linux-libc-dev \
|
|
libffi-dev:armhf \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
INCLUDE+ ./common/Dockerfile.gdb-deps
|
|
INCLUDE+ ./common/Dockerfile.python-builder
|