github.com/secure-build/gitlab-runner@v12.5.0+incompatible/dockerfiles/build/Dockerfile.arm (about)

     1  FROM multiarch/alpine:armhf-v3.10
     2  
     3  # gitlab-runner-helper will try to resolve `sh` from the path. We ensure the PATH is populated by default, as some container runtimes do no longer set a default (e.g. containerd v1.2.8)
     4  ENV PATH="${PATH:-/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin}"
     5  
     6  RUN apk add --no-cache bash ca-certificates git git-lfs miniperl \
     7  	&& ln -s miniperl /usr/bin/perl
     8  
     9  RUN git lfs install --skip-repo
    10  
    11  COPY ./scripts/ /usr/bin
    12  COPY ./binaries/gitlab-runner-helper.arm /usr/bin/gitlab-runner-helper
    13  
    14  RUN echo 'hosts: files dns' >> /etc/nsswitch.conf