From 98cf27221c31ed8049f6c0f157f821cb65005bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sat, 17 May 2025 11:40:57 -0700 Subject: [PATCH] build: add 8.17 --- README.md | 6 +++--- build.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3ea419e..79e0c10 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # racket-docker -Docker images for various Racket versions available on DockerHub as [`racket/racket:`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.16 REPL: +Docker images for various Racket versions available on DockerHub as [`racket/racket:`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.17 REPL: ``` -$ docker run -it racket/racket:8.16-full +$ docker run -it racket/racket:8.17-full ``` #### Normal images @@ -16,7 +16,7 @@ These images use the `minimal-install` of Racket to avoid pulling in things like DrRacket or Scribble. This also means many `raco` commands such as `raco make` will be missing; install the `compiler-lib` package to get most of the standard `raco` commands. Alternatively, use the "full" images instead such as -`racket/racket:8.16-full`. +`racket/racket:8.17-full`. Versions: 6.1 and above. Racket CS images are available for 7.4 and above. diff --git a/build.sh b/build.sh index 7c10cc5..174a438 100755 --- a/build.sh +++ b/build.sh @@ -124,7 +124,7 @@ foreach () { done; }; -declare -r LATEST_RACKET_VERSION="8.16"; +declare -r LATEST_RACKET_VERSION="8.17"; tag_latest () { declare -r repository="${1}"; @@ -133,7 +133,7 @@ tag_latest () { # The 8x series is split into two to avoid running into storage limits in CI. build_8x_2 () { - foreach build_8x "8.10" "8.11" "8.11.1" "8.12" "8.13" "8.14" "8.15" "8.16"; + foreach build_8x "8.10" "8.11" "8.11.1" "8.12" "8.13" "8.14" "8.15" "8.16" "8.17"; tag_latest "${DOCKER_REPOSITORY}"; tag_latest "${SECONDARY_DOCKER_REPOSITORY}"; }