Skip to content

Commit

Permalink
Update go version in Dockerfiles
Browse files Browse the repository at this point in the history
While our go.mod references golang 1.13, our dockerfiles
used 1.12.5, which caused some issues with imports.
  • Loading branch information
BradleyBoutcher committed Dec 17, 2019
1 parent 56540de commit e8085e9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 66 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM golang:1.12.5-stretch as secretless-builder
FROM golang:1.13-stretch as secretless-builder
MAINTAINER Conjur Inc.
LABEL builder="secretless-builder"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
@@ -1,4 +1,4 @@
FROM golang:1.12.5-stretch
FROM golang:1.13-stretch
MAINTAINER Conjur Inc.

RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test
@@ -1,4 +1,4 @@
FROM golang:1.12.5-alpine
FROM golang:1.13-alpine
MAINTAINER Conjur Inc.
LABEL id="secretless-test-runner"

Expand Down

0 comments on commit e8085e9

Please sign in to comment.