NodeJS: Update to LTS (14) (#29467)

* NodeJS: Update to LTS (14)

* Bump Volta's Node version

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>

* Bump version of build image

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>

* Drone: Upgrade build image

Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Torkel Ödegaard
2020-12-02 18:18:49 +01:00
committed by GitHub
parent 18c3f7bba0
commit 00d59ec1fc
7 changed files with 146 additions and 146 deletions

View File

@ -100,7 +100,7 @@ FROM debian:stretch-20201012
ENV GOVERSION=1.15.5 \
PATH=/usr/local/go/bin:$PATH \
GOPATH=/go \
NODEVERSION=12.19.1-1nodesource1 \
NODEVERSION=14.15.1-1nodesource1 \
YARNVERSION=1.22.5-1 \
GO111MODULE=on
@ -135,7 +135,7 @@ RUN apt-get update && \
unzip && \
gem install -N fpm && \
ln -s /usr/bin/llvm-dsymutil-6.0 /usr/bin/dsymutil && \
curl -fsL https://deb.nodesource.com/setup_12.x | bash - && \
curl -fsL https://deb.nodesource.com/setup_14.x | bash - && \
apt-get update && apt-get install -yq nodejs=${NODEVERSION} && \
curl -fsS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \

View File

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