Files
linuxkit/alpine/packages/diagnostics/Dockerfile
Justin Cormack 588798404f Do not create latest tags for base images
As we never use these, do not create them.

Also update images where applicable.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-10-10 14:55:48 +01:00

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"]