Skip to content

Commit 7749ba1

Browse files
LucasRoesleralexellis
authored andcommitted
Bump golang to 1.10.x and alpine to 3.8
**What** - Bump the base docker image to golang:1.10 - Bump the alpine version to 3.8 Signed-off-by: Lucas Roesler <[email protected]>
1 parent 737bb63 commit 7749ba1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.9.7
1+
FROM golang:1.10
22

33
RUN mkdir -p /go/src/github.com/openfaas/faas-netes/
44

@@ -18,7 +18,7 @@ RUN gofmt -l -d $(find . -type f -name '*.go' -not -path "./vendor/*") \
1818
-X github.com/openfaas/faas-netes/version.Version=${VERSION}" \
1919
-a -installsuffix cgo -o faas-netes .
2020

21-
FROM alpine:3.7
21+
FROM alpine:3.8
2222

2323
LABEL org.label-schema.license="MIT" \
2424
org.label-schema.vcs-url="https://github.com/openfaas/faas-netes" \

Dockerfile.arm64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.9.7 as build
1+
FROM golang:1.10 as build
22
ENV GOPATH=/go/
33
RUN mkdir -p /go/src/github.com/openfaas/faas-netes/
44

@@ -15,7 +15,7 @@ RUN gofmt -l -d $(find . -type f -name '*.go' -not -path "./vendor/*") \
1515
-a -installsuffix cgo -o faas-netes .
1616

1717

18-
FROM alpine:3.7
18+
FROM alpine:3.8
1919
RUN apk --no-cache add ca-certificates
2020
WORKDIR /root/
2121

Dockerfile.armhf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.9.7 as build
1+
FROM golang:1.10 as build
22

33
RUN mkdir -p /go/src/github.com/openfaas/faas-netes/
44

@@ -13,7 +13,7 @@ RUN VERSION=$(git describe --all --exact-match `git rev-parse HEAD` | grep tags
1313
-X github.com/openfaas/faas-netes/version.Version=${VERSION}" \
1414
-a -installsuffix cgo -o faas-netes .
1515

16-
FROM alpine:3.7 as ship
16+
FROM alpine:3.8 as ship
1717

1818
RUN apk --no-cache add ca-certificates
1919
WORKDIR /root/

0 commit comments

Comments
 (0)