From 846a2623428e27e1b28f4214a1d01bc42c8c7d03 Mon Sep 17 00:00:00 2001 From: Anish C Date: Tue, 9 Jan 2024 01:40:08 +0100 Subject: [PATCH] update .devcontainer golang to 1.21.0 --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index a64e970e0b..e2123f251a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,8 +1,8 @@ -FROM golang:1.19 +FROM golang:1.21.0 RUN apt-get update && apt-get install -y sudo RUN curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - && \ - apt-get install -y nodejs + apt-get install -y nodejs npm ADD scripts /scripts RUN bash /scripts/install.sh