From 8827b3fc32ad660674b87dbc5950c166c179c113 Mon Sep 17 00:00:00 2001 From: Will McCutchen <will@mccutch.org> Date: Wed, 30 Sep 2020 11:48:41 -0400 Subject: [PATCH] Bump docker image to go 1.15 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b27e98d..31e9571 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM golang:1.13 +FROM golang:1.15 WORKDIR /go/src/github.com/mccutchen/go-httpbin -COPY Makefile . -RUN make deps +# Manually implement the subset of `make deps` we need to build the image +RUN cd /tmp && go get -u github.com/kevinburke/go-bindata/... COPY . . RUN make build buildtests -- GitLab