From 42007a1294f16f137c3ec5ecdf54655497844d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Wed, 6 Nov 2024 22:22:30 -0800 Subject: [PATCH] build: add 8.15 (#80) --- README.md | 6 +++--- build.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fbfa65a..1f910d8 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.14 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.15 REPL: ``` -$ docker run -it racket/racket:8.14-full +$ docker run -it racket/racket:8.15-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.14-full`. +`racket/racket:8.15-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 9e5ddde..3ed39d5 100755 --- a/build.sh +++ b/build.sh @@ -124,7 +124,7 @@ foreach () { done; }; -declare -r LATEST_RACKET_VERSION="8.14"; +declare -r LATEST_RACKET_VERSION="8.15"; 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"; + foreach build_8x "8.10" "8.11" "8.11.1" "8.12" "8.13" "8.14" "8.15"; tag_latest "${DOCKER_REPOSITORY}"; tag_latest "${SECONDARY_DOCKER_REPOSITORY}"; }