From 4b909d8c469e2d63ea2f649981c53570441796bb Mon Sep 17 00:00:00 2001 From: Bogdan Popa Date: Sat, 13 Jun 2026 18:08:56 +0300 Subject: [PATCH] build: add 9.2 --- README.md | 6 +++--- build.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9d169f4..107e2cb 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 9.1 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 9.2 REPL: ``` -$ docker run -it racket/racket:9.1-full +$ docker run -it racket/racket:9.2-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:9.1-full`. +`racket/racket:9.2-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 6a9fdd1..f617e47 100755 --- a/build.sh +++ b/build.sh @@ -136,7 +136,7 @@ foreach () { done; }; -declare -r LATEST_RACKET_VERSION="9.1"; +declare -r LATEST_RACKET_VERSION="9.2"; tag_latest () { declare -r repository="${1}"; @@ -144,7 +144,7 @@ tag_latest () { }; build_all_9x () { - foreach build_9x "9.0" "9.1"; + foreach build_9x "9.0" "9.1" "9.2"; tag_latest "${DOCKER_REPOSITORY}"; tag_latest "${SECONDARY_DOCKER_REPOSITORY}"; }