Skip to content

Commit

Permalink
Merge pull request #140 from linki/alpine3.10
Browse files Browse the repository at this point in the history
Update docker images to use alpine 3.10
  • Loading branch information
linki authored Aug 15, 2019
2 parents bc154e3 + 4bd3199 commit 05595d4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.arm32v6
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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.arm64v8
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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.ppc64le
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
Expand All @@ -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
Expand Down

0 comments on commit 05595d4

Please sign in to comment.