Skip to content
Snippets Groups Projects
Select Git revision
  • d84028301eb7d2ebda43f0b0500116b9cad6ce6d
  • v2018.2.x default protected
  • 0x4A6F-rpi4
  • 0x4A6F-master
  • master
  • v2018.2.2-ffs
  • v2016.2.4-batmanbug
  • radv-filterd
  • v2016.2.x
  • hoodselector
  • v2016.1.x
  • babel
  • v2015.1.x
  • 2014.4.x
  • 2014.3.x
  • v2018.2.2-ffs0.1
  • v2018.2.1-ffs0.1
  • v2018.2.1
  • v2018.2-ffs0.1
  • v2018.2
  • v2018.1.4
  • v2018.1.3
  • v2018.1.2
  • v2018.1.1
  • v2018.1
  • v2017.1.8
  • v2017.1.7
  • v2017.1.6
  • v2017.1.5
  • v2017.1.4
  • v2017.1.3
  • v2017.1.2
  • v2016.2.7
  • v2017.1.1
  • v2017.1
35 results

modules

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    Dockerfile 884 B
    FROM debian:bookworm-slim
    
    RUN apt-get update \
        && apt-get install -y ca-certificates \
        ca-certificates \
        file \
        git \
        python3 \
        python3-dev \
        python3-distutils \
        python3-pyelftools \
        python3-setuptools \
        build-essential \
        gawk \
        unzip \
        libncurses5-dev \
        zlib1g-dev \
        libssl-dev \
        libelf-dev \
        wget \
        rsync \
        time \
        qemu-utils \
        ecdsautils \
        lua-check \
        shellcheck \
        libnss-unknown \
        openssh-client \
        swig \
        && apt-get clean \
        && rm -rf /var/lib/apt/lists/*
    
    # gluon build fails when running as root
    RUN useradd -m -d /build -u 100 -g 100 -o build
    USER build:build
    # workaround for fatal: detected dubious ownership in repository at '/builds/firmware/site-ffs'
    # https://gitlab.com/gitlab-org/gitlab-runner/-/issues/29022
    RUN git config --global --add safe.directory '*'