Block a user
arm-builder (latest)
Published 2026-06-10 09:24:38 +03:00 by creator
Installation
docker pull git.h3fq32.golive.ru/creator/arm-builder:latestsha256:9e46640767a2c209ddca49cd0ee084df3e46855a679a2c094590fc985ae19d09
Image Layers
| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c sed -i 's|http://archive.ubuntu.com|http://ru.archive.ubuntu.com|g' /etc/apt/sources.list.d/ubuntu.sources 2>/dev/null || sed -i 's|http://archive.ubuntu.com|http://ru.archive.ubuntu.com|g' /etc/apt/sources.list 2>/dev/null || true # buildkit |
| RUN /bin/sh -c apt-get update --fix-missing -qq && apt-get install -y --no-install-recommends --fix-missing gcc libc6-dev gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi make git ca-certificates curl nodejs lcov unzip gnupg clang-tidy libjson-xs-perl openjdk-21-jre-headless && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c arm-none-eabi-gcc --version && gcc --version && node --version && make --version && lcov --version | head -1 && unzip -v | head -1 && gpg --version | head -1 && clang-tidy --version | head -2 && perl -MJSON::XS -e 'print "JSON::XS OK\n"' && java -version # buildkit |
| RUN /bin/sh -c rm -f /var/run && mkdir -p /var/run/act /run # buildkit |
| ARG CUBE_TAG=v1.5.2 |
| RUN |1 CUBE_TAG=v1.5.2 /bin/sh -c git clone --depth=1 --recurse-submodules --shallow-submodules --branch ${CUBE_TAG} https://github.com/STMicroelectronics/STM32CubeG4.git /tmp/cube 2>&1 | tail -5 && DRIVERS=$(find /tmp/cube -maxdepth 2 -name "STM32G4xx_HAL_Driver" -type d | head -1 | xargs dirname) && mkdir -p /opt/stm32cube && cp -r "$DRIVERS" /opt/stm32cube/ && rm -rf /tmp/cube && du -sh /opt/stm32cube/Drivers # buildkit |
| ARG SONAR_SCANNER_VERSION=6.2.1.4610 |
| ARG SONAR_SCANNER_MIRROR=http://192.168.7.179:3000/api/packages/shared/generic/sonar-scanner-cli |
| RUN |3 CUBE_TAG=v1.5.2 SONAR_SCANNER_VERSION=6.2.1.4610 SONAR_SCANNER_MIRROR=http://192.168.7.179:3000/api/packages/shared/generic/sonar-scanner-cli /bin/sh -c curl -fSL --retry 3 --retry-delay 5 -o /tmp/sonar-scanner.zip "${SONAR_SCANNER_MIRROR}/${SONAR_SCANNER_VERSION}/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux-x64.zip" && unzip -q /tmp/sonar-scanner.zip -d /opt && mv /opt/sonar-scanner-${SONAR_SCANNER_VERSION}-linux-x64 /opt/sonar-scanner && rm /tmp/sonar-scanner.zip && ln -s /opt/sonar-scanner/bin/sonar-scanner /usr/local/bin/sonar-scanner && sonar-scanner --version | head -5 # buildkit |
| WORKDIR /workspace |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.version | 24.04 |