Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# racket-docker

Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](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:<version>`](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
Expand All @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}";
Expand All @@ -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}";
}
Expand Down