Skip to content

Commit eff2144

Browse files
committed
update build; bump version
Signed-off-by: Evan Hazlett <[email protected]>
1 parent d6df48e commit eff2144

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

Dockerfile.build

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ RUN go get -v golang.org/x/lint/golint
1919
RUN go get -v github.com/tebeka/go2xunit
2020
ENV APP stellar
2121
ENV REPO ehazlett/$APP
22-
ENV GO111MODULE=on
23-
RUN go mod vendor
2422
ARG BUILD
2523
COPY . /go/src/github.com/$REPO
2624
WORKDIR /go/src/github.com/$REPO

Dockerfile.package

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ RUN go get -v github.com/tebeka/go2xunit
2121
FROM build as stellar
2222
ENV APP stellar
2323
ENV REPO ehazlett/$APP
24-
ENV GO111MODULE on
2524
ARG BUILD
2625
COPY . /go/src/github.com/$REPO
2726
WORKDIR /go/src/github.com/$REPO
@@ -62,7 +61,7 @@ FROM build as cni
6261
RUN apt-get update && apt-get install -y build-essential
6362
RUN git clone https://github.com/containernetworking/plugins /go/src/github.com/containernetworking/plugins
6463
WORKDIR /go/src/github.com/containernetworking/plugins
65-
RUN ./build.sh
64+
RUN ./build_linux.sh
6665

6766
FROM scratch as rootfs
6867
COPY --from=stellar /release.txt /

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var (
77
Name = "stellar"
88

99
// Version defines the application version
10-
Version = "0.1.0"
10+
Version = "0.2.0"
1111

1212
// Description is the application description
1313
Description = "simple container platform"

0 commit comments

Comments
 (0)