From d29763e8eb17db768b6e3d7790e5d2d4213b0408 Mon Sep 17 00:00:00 2001 From: Jan Pfeifer Date: Sun, 18 Aug 2024 09:20:01 +0200 Subject: [PATCH] Creating new v0.10.3 release. --- Dockerfile | 11 +++++------ docs/CHANGELOG.md | 4 ++-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 751b28a..9add5e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,15 +22,13 @@ FROM ${BASE_IMAGE}:${BASE_TAG} # Update apt and install basic utils USER root -RUN apt-get update --yes -RUN apt-get install --yes --no-install-recommends wget -RUN apt-get install --yes --no-install-recommends git +RUN apt update --yes +RUN apt install --yes --no-install-recommends wget git ####################################################################################################### # Go and GoNB Libraries ####################################################################################################### -ENV GO_VERSION=1.22.5 -ENV GONB_VERSION="v0.10.2" +ARG GO_VERSION=1.23.0 ENV GOROOT=/usr/local/go ENV GOPATH=/opt/go ENV PATH=$PATH:$GOROOT/bin:$GOPATH/bin @@ -41,10 +39,11 @@ RUN mkdir ${GOPATH} && chown ${NB_USER}:users ${GOPATH} USER root WORKDIR /usr/local -RUN wget --quiet --output-document=- "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" | tar -xz \ +RUN wget --quiet --output-document=- "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" | tar -xvz \ && go version # Install GoNB (https://github.com/janpfeifer/gonb) in the user account +ARG GONB_VERSION="v0.10.3" USER $NB_USER WORKDIR ${HOME} RUN export GOPROXY=direct && \ diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 5ef6ed1..b01e792 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,9 +1,9 @@ # GoNB Changelog -## Next +## 0.10.3, Simple go1.23 update. * go1.23, and update dependencies. -* +* Fixed GitHub's go.yaml actions, test shows green now. ## 0.10.2, 2024/07/10 Added Jupytext support and `ndlv` script for debugging cells.