Browse Source

tests: update docker versions to match build version (#7646)

pull/7647/head
Sam Kleinman 2 years ago
committed by GitHub
parent
commit
9f4f51318c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      DOCKER/Dockerfile
  2. +1
    -1
      test/docker/Dockerfile

+ 2
- 2
DOCKER/Dockerfile View File

@ -1,5 +1,5 @@
# stage 1 Generate Tendermint Binary
FROM golang:1.16-alpine as builder
FROM golang:1.17-alpine as builder
RUN apk update && \
apk upgrade && \
apk --no-cache add make
@ -8,7 +8,7 @@ WORKDIR /tendermint
RUN make build-linux
# stage 2
FROM golang:1.15-alpine
FROM golang:1.17-alpine
LABEL maintainer="hello@tendermint.com"
# Tendermint will be looking for the genesis file in /tendermint/config/genesis.json


+ 1
- 1
test/docker/Dockerfile View File

@ -1,4 +1,4 @@
FROM golang:1.16
FROM golang:1.17
# Grab deps (jq, hexdump, xxd, killall)
RUN apt-get update && \


Loading…
Cancel
Save