Skip to content

Commit

Permalink
upgrade go, consul and vault
Browse files Browse the repository at this point in the history
  • Loading branch information
magiconair committed Feb 25, 2019
1 parent eed370b commit 3012028
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.11.1-alpine AS build
FROM golang:1.11.5-alpine AS build

ARG consul_version=1.3.0
ARG consul_version=1.4.2
ADD https://releases.hashicorp.com/consul/${consul_version}/consul_${consul_version}_linux_amd64.zip /usr/local/bin
RUN cd /usr/local/bin && unzip consul_${consul_version}_linux_amd64.zip

ARG vault_version=0.11.4
ARG vault_version=1.0.3
ADD https://releases.hashicorp.com/vault/${vault_version}/vault_${vault_version}_linux_amd64.zip /usr/local/bin
RUN cd /usr/local/bin && unzip vault_${vault_version}_linux_amd64.zip

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ GOVERSION = $(shell go version | awk '{print $$3;}')
GORELEASER = $(shell which goreleaser)

# pin versions for CI builds
CI_CONSUL_VERSION=1.3.0
CI_VAULT_VERSION=0.11.4
CI_CONSUL_VERSION=1.4.2
CI_VAULT_VERSION=1.0.3

# all is the default target
all: test
Expand Down

0 comments on commit 3012028

Please sign in to comment.