Skip to content

Commit 318a145

Browse files
authored
Merge pull request #71 from Bogdanp/racket-88
build: add 8.8
2 parents b626c31 + 36cb0bb commit 318a145

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.7 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.8 REPL:
44

55
```
6-
$ docker run -it racket/racket:8.7
6+
$ docker run -it racket/racket:8.8
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.7-full`.
19+
`racket/racket:8.8-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.7";
125+
declare -r LATEST_RACKET_VERSION="8.8";
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";
133+
foreach build_8x "8.0" "8.1" "8.2" "8.3" "8.4" "8.5" "8.6" "8.7" "8.8";
134134
tag_latest "${DOCKER_REPOSITORY}";
135135
tag_latest "${SECONDARY_DOCKER_REPOSITORY}";
136136
}

0 commit comments

Comments
 (0)