Update scripts and Dockerfiles to use Go 1.16.1 (#31881)

* Update scripts and Dockerfiles to use Go 1.16.1

* Update build-container image version to 1.4.1

* Update node version to 14.16.0-1nodesource1

* Updated drone configuration
This commit is contained in:
Dimitris Sotirakis
2021-03-11 12:55:04 +02:00
committed by GitHub
parent 0179d23af0
commit d59574ec1e
10 changed files with 175 additions and 175 deletions

View File

@@ -100,10 +100,10 @@ RUN tar xf cue_${CUE_VERSION}_Linux_x86_64.tar.gz -C /tmp cue
# Use old Debian (this has support into 2022) in order to ensure binary compatibility with older glibc's.
FROM debian:stretch-20210208
ENV GOVERSION=1.16 \
ENV GOVERSION=1.16.1 \
PATH=/usr/local/go/bin:$PATH \
GOPATH=/go \
NODEVERSION=14.15.5-1nodesource1 \
NODEVERSION=14.16.0-1nodesource1 \
YARNVERSION=1.22.5-1
# Use ARG so as not to persist environment variable in image

View File

@@ -1,7 +1,7 @@
#!/bin/bash
set -eo pipefail
_version="1.4.0"
_version="1.4.1"
_tag="grafana/build-container:${_version}"
_dpath=$(dirname "${BASH_SOURCE[0]}")