Skip to content

Commit 60f9418

Browse files
committed
build: add 8.12
1 parent 6c2cb71 commit 60f9418

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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 8.11.1 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 8.12 REPL:
44

55
```
6-
$ docker run -it racket/racket:8.11.1
6+
$ docker run -it racket/racket:8.12-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:8.11.1-full`.
19+
`racket/racket:8.12-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
@@ -122,15 +122,15 @@ foreach () {
122122
done;
123123
};
124124

125-
declare -r LATEST_RACKET_VERSION="8.11.1";
125+
declare -r LATEST_RACKET_VERSION="8.12";
126126

127127
tag_latest () {
128128
declare -r repository="${1}";
129129
docker image tag "${repository}:${LATEST_RACKET_VERSION}" "${repository}:latest";
130130
};
131131

132132
build_all_8x () {
133-
foreach build_8x "8.0" "8.1" "8.2" "8.3" "8.4" "8.5" "8.6" "8.7" "8.8" "8.9" "8.10" "8.11" "8.11.1";
133+
foreach build_8x "8.0" "8.1" "8.2" "8.3" "8.4" "8.5" "8.6" "8.7" "8.8" "8.9" "8.10" "8.11" "8.11.1" "8.12";
134134
tag_latest "${DOCKER_REPOSITORY}";
135135
tag_latest "${SECONDARY_DOCKER_REPOSITORY}";
136136
}

0 commit comments

Comments
 (0)