From eff2144b26e34a9f40b4770f5c650bf483db247a Mon Sep 17 00:00:00 2001 From: Evan Hazlett Date: Sun, 23 Dec 2018 01:41:25 -0500 Subject: [PATCH] update build; bump version Signed-off-by: Evan Hazlett --- Dockerfile.build | 2 -- Dockerfile.package | 3 +-- version/version.go | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index 5a52e55f..1f4715b7 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -19,8 +19,6 @@ RUN go get -v golang.org/x/lint/golint RUN go get -v github.com/tebeka/go2xunit ENV APP stellar ENV REPO ehazlett/$APP -ENV GO111MODULE=on -RUN go mod vendor ARG BUILD COPY . /go/src/github.com/$REPO WORKDIR /go/src/github.com/$REPO diff --git a/Dockerfile.package b/Dockerfile.package index a7527cbe..857c68b1 100644 --- a/Dockerfile.package +++ b/Dockerfile.package @@ -21,7 +21,6 @@ RUN go get -v github.com/tebeka/go2xunit FROM build as stellar ENV APP stellar ENV REPO ehazlett/$APP -ENV GO111MODULE on ARG BUILD COPY . /go/src/github.com/$REPO WORKDIR /go/src/github.com/$REPO @@ -62,7 +61,7 @@ FROM build as cni RUN apt-get update && apt-get install -y build-essential RUN git clone https://github.com/containernetworking/plugins /go/src/github.com/containernetworking/plugins WORKDIR /go/src/github.com/containernetworking/plugins -RUN ./build.sh +RUN ./build_linux.sh FROM scratch as rootfs COPY --from=stellar /release.txt / diff --git a/version/version.go b/version/version.go index 82cd4e41..02a2f5d1 100644 --- a/version/version.go +++ b/version/version.go @@ -7,7 +7,7 @@ var ( Name = "stellar" // Version defines the application version - Version = "0.1.0" + Version = "0.2.0" // Description is the application description Description = "simple container platform"