mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-06 15:07:39 +00:00
10 lines
259 B
Docker
10 lines
259 B
Docker
FROM mobylinux/alpine-build-go:21b413791b4fed2e16126c77c6b860feaf889d70
|
|
|
|
COPY ./ /go/src/diagnostics-server/
|
|
|
|
WORKDIR /go/src/diagnostics-server
|
|
|
|
RUN go install --ldflags '-extldflags "-fno-PIC"'
|
|
|
|
CMD ["tar", "cf", "-", "-C", "/go/bin", "diagnostics-server"]
|