-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from linki/alpine3.10
Update docker images to use alpine 3.10
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# builder image | ||
FROM golang:1.12-alpine3.9 as builder | ||
FROM golang:1.12-alpine3.10 as builder | ||
|
||
ENV CGO_ENABLED 0 | ||
ENV GO111MODULE on | ||
|
@@ -13,7 +13,7 @@ RUN go build -o /bin/chaoskube -v \ | |
-ldflags "-X main.version=$(git describe --tags --always --dirty) -w -s" | ||
|
||
# final image | ||
FROM alpine:3.9 | ||
FROM alpine:3.10 | ||
MAINTAINER Linki <[email protected]> | ||
|
||
RUN apk --no-cache add ca-certificates dumb-init tzdata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# builder image | ||
FROM golang:1.12-alpine3.9 as builder | ||
FROM golang:1.12-alpine3.10 as builder | ||
|
||
ENV CGO_ENABLED 0 | ||
ENV GO111MODULE on | ||
|
@@ -13,7 +13,7 @@ RUN go build -o /bin/chaoskube -v \ | |
-ldflags "-X main.version=$(git describe --tags --always --dirty) -w -s" | ||
|
||
# final image | ||
FROM arm32v6/alpine:3.9 | ||
FROM arm32v6/alpine:3.10 | ||
MAINTAINER Linki <[email protected]> | ||
|
||
COPY --from=builder /bin/chaoskube /bin/chaoskube | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# builder image | ||
FROM golang:1.12-alpine3.9 as builder | ||
FROM golang:1.12-alpine3.10 as builder | ||
|
||
ENV CGO_ENABLED 0 | ||
ENV GO111MODULE on | ||
|
@@ -13,7 +13,7 @@ RUN go build -o /bin/chaoskube -v \ | |
-ldflags "-X main.version=$(git describe --tags --always --dirty) -w -s" | ||
|
||
# final image | ||
FROM arm64v8/alpine:3.9 | ||
FROM arm64v8/alpine:3.10 | ||
MAINTAINER Linki <[email protected]> | ||
|
||
COPY --from=builder /bin/chaoskube /bin/chaoskube | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# builder image | ||
FROM golang:1.12-alpine3.9 as builder | ||
FROM golang:1.12-alpine3.10 as builder | ||
|
||
ENV CGO_ENABLED 0 | ||
ENV GO111MODULE on | ||
|
@@ -13,7 +13,7 @@ RUN go build -o /bin/chaoskube -v \ | |
-ldflags "-X main.version=$(git describe --tags --always --dirty) -w -s" | ||
|
||
# final image | ||
FROM ppc64le/alpine:3.9 | ||
FROM ppc64le/alpine:3.10 | ||
MAINTAINER Linki <[email protected]> | ||
|
||
COPY --from=builder /bin/chaoskube /bin/chaoskube | ||
|