mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-12 17:31:12 +00:00
As this is not installed via apk it was not being included in the checksum. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
14 lines
284 B
Docker
14 lines
284 B
Docker
FROM mobylinux/alpine-build-go:30067067003d565887d7efe533eba03ed46038d2
|
|
|
|
RUN mkdir -p /go/src/vsudd
|
|
WORKDIR /go/src/vsudd
|
|
|
|
COPY . /go/src/vsudd/
|
|
|
|
ARG GOARCH
|
|
ARG GOOS
|
|
|
|
RUN go install --ldflags '-extldflags "-fno-PIC"'
|
|
|
|
RUN [ -f /go/bin/*/vsudd ] && mv /go/bin/*/vsudd /go/bin/ || true
|