github.com/ssube/gitlab-ci-multi-runner@v1.2.1-0.20160607142738-b8d1285632e6/dockerfiles/build/Dockerfile (about) 1 FROM alpine 2 3 RUN apk add --update bash wget ca-certificates openssl git tar 4 5 RUN wget -O /tmp/glibc.apk "https://circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc/6/artifacts/0/home/ubuntu/alpine-pkg-glibc/packages/x86_64/glibc-2.21-r2.apk" && \ 6 apk add --allow-untrusted /tmp/glibc.apk && \ 7 /usr/glibc/usr/bin/ldconfig /lib /usr/glibc/usr/lib && \ 8 rm /tmp/glibc.apk 9 10 COPY ./gitlab-runner-helper /usr/bin/ 11 COPY ./docker-entrypoint.sh / 12 ENTRYPOINT ["/docker-entrypoint.sh"]