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

Commit

Permalink
Fixes #4 update golang & alpine
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Wilde <ewilde@gmail.com>
  • Loading branch information
ewilde authored and alexellis committed Aug 28, 2019
1 parent 04e1e4d commit aa06502
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.10.4 as build
FROM golang:1.11 as build

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

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

# Release stage
FROM alpine:3.8
FROM alpine:3.10 as ship

LABEL org.label-schema.license="MIT" \
org.label-schema.vcs-url="https://github.com/openfaas/faas-federation" \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GO_FILES?=$$(find . -name '*.go' |grep -v vendor)
TAG?=latest
SQUASH?=false
VERSION?=0.1
VERSION?=0.1.1

default: lint vet build test

Expand Down

0 comments on commit aa06502

Please sign in to comment.