Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 956 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 956 Bytes

bazel-alpine-package

This is the Bazel 0.26.1 as a Alpine Linux package.

Installing

The current installation method for these packages is to pull them in using wget or curl and install the local file with apk:

apk --no-cache add ca-certificates wget
wget -q -O /etc/apk/keys/[email protected] https://raw.githubusercontent.com/davido/bazel-alpine-package/master/[email protected]
wget https://github.com/davido/bazel-alpine-package/releases/download/0.26.1/bazel-0.26.1-r0.apk
apk add bazel-0.26.1-r0.apk

Usage inside a Dockerfile

ADD https://raw.githubusercontent.com/davido/bazel-alpine-package/master/[email protected] \
    /etc/apk/keys/[email protected]
ADD https://github.com/davido/bazel-alpine-package/releases/download/0.26.1/bazel-0.26.1-r0.apk \
    /tmp/bazel-0.26.1-r0.apk
RUN apk add /tmp/bazel-0.26.1-r0.apk