Skip to content

Commit ee529ec

Browse files
committed
build: add 9.1
1 parent a947bea commit ee529ec

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# racket-docker
22

3-
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 9.0 REPL:
3+
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 9.1 REPL:
44

55
```
6-
$ docker run -it racket/racket:9.0-full
6+
$ docker run -it racket/racket:9.1-full
77
```
88

99
#### Normal images
@@ -16,7 +16,7 @@ These images use the `minimal-install` of Racket to avoid pulling in things like
1616
DrRacket or Scribble. This also means many `raco` commands such as `raco make`
1717
will be missing; install the `compiler-lib` package to get most of the standard
1818
`raco` commands. Alternatively, use the "full" images instead such as
19-
`racket/racket:9.0-full`.
19+
`racket/racket:9.1-full`.
2020

2121
Versions: 6.1 and above. Racket CS images are available for 7.4 and above.
2222

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,15 @@ foreach () {
136136
done;
137137
};
138138

139-
declare -r LATEST_RACKET_VERSION="9.0";
139+
declare -r LATEST_RACKET_VERSION="9.1";
140140

141141
tag_latest () {
142142
declare -r repository="${1}";
143143
docker image tag "${repository}:${LATEST_RACKET_VERSION}" "${repository}:latest";
144144
};
145145

146146
build_all_9x () {
147-
foreach build_9x "9.0";
147+
foreach build_9x "9.0" "9.1";
148148
tag_latest "${DOCKER_REPOSITORY}";
149149
tag_latest "${SECONDARY_DOCKER_REPOSITORY}";
150150
}

0 commit comments

Comments
 (0)