mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 21:13:23 +00:00
As we never use these, do not create them. Also update images where applicable. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
10 lines
259 B
Docker
10 lines
259 B
Docker
FROM mobylinux/alpine-build-go:e3d97551827fd2ea70b8c484615e85986d4e77fc
|
|
|
|
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"]
|