Skip to content
This repository was archived by the owner on Nov 5, 2020. It is now read-only.

Commit aa06502

Browse files
ewildealexellis
authored andcommitted
Fixes #4 update golang & alpine
Signed-off-by: Edward Wilde <[email protected]>
1 parent 04e1e4d commit aa06502

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.10.4 as build
1+
FROM golang:1.11 as build
22

33
RUN mkdir -p /go/src/github.com/ewilde/faas-federation/
44

@@ -28,7 +28,7 @@ RUN gofmt -l -d $(find . -type f -name '*.go' -not -path "./vendor/*") \
2828
-a -installsuffix cgo -o faas-federation .
2929

3030
# Release stage
31-
FROM alpine:3.8
31+
FROM alpine:3.10 as ship
3232

3333
LABEL org.label-schema.license="MIT" \
3434
org.label-schema.vcs-url="https://github.com/openfaas/faas-federation" \

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GO_FILES?=$$(find . -name '*.go' |grep -v vendor)
22
TAG?=latest
33
SQUASH?=false
4-
VERSION?=0.1
4+
VERSION?=0.1.1
55

66
default: lint vet build test
77

0 commit comments

Comments
 (0)