FROM golang:1.11-alpine AS build # Install Node and NPM. RUN apk update && apk upgrade && apk add --no-cache git nodejs bash npm # Get dependencies for Go part of build RUN go get -u github.com/jteeuwen/go-bindata/... RUN go get github.com/tools/godep WORKDIR /go/src/github.com/kubernetes-up-and-running/kuard # Copy all sources in COPY . . # This is a set of variables that the build script expects ENV VERBOSE=0 ENV PKG=github.com/kubernetes-up-and-running/kuard ENV ARCH=amd64 ENV VERSION=test # Do the build. Script is part of incoming sources. RUN build/build.sh # At runtime run as non-root user USER nobody:nobody CMD [ "/go/bin/kuard" ]