Skip to content

Commit

Permalink
Creating new v0.10.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
janpfeifer committed Aug 18, 2024
1 parent 64c2b00 commit d29763e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit d29763e

Please sign in to comment.