Skip to content

Commit 9d9d41e

Browse files
Run update.sh
1 parent 6a0f614 commit 9d9d41e

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

golang/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a
130130
The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management):
131131

132132
```dockerfile
133-
FROM golang:1.22
133+
FROM golang:1.23
134134

135135
WORKDIR /usr/src/app
136136

@@ -156,27 +156,27 @@ $ docker run -it --rm --name my-running-app my-golang-app
156156
There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like:
157157

158158
```console
159-
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 go build -v
159+
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 go build -v
160160
```
161161

162162
This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container.
163163

164164
```console
165-
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 make
165+
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 make
166166
```
167167

168168
## Cross-compile your app inside the Docker container
169169

170170
If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`):
171171

172172
```console
173-
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.22 go build -v
173+
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.23 go build -v
174174
```
175175

176176
Alternatively, you can build for multiple platforms at once:
177177

178178
```console
179-
$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 bash
179+
$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 bash
180180
$ for GOOS in darwin linux; do
181181
> for GOARCH in 386 amd64; do
182182
> export GOOS GOARCH

oraclelinux/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`9`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9/Dockerfile)
27+
- [`9`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9/Dockerfile)
2828

29-
- [`9-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9-slim/Dockerfile)
29+
- [`9-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9-slim/Dockerfile)
3030

31-
- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9-slim-fips/Dockerfile)
31+
- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9-slim-fips/Dockerfile)
3232

33-
- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8/Dockerfile)
33+
- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8/Dockerfile)
3434

35-
- [`8-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8-slim/Dockerfile)
35+
- [`8-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8-slim/Dockerfile)
3636

37-
- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8-slim-fips/Dockerfile)
37+
- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8-slim-fips/Dockerfile)
3838

39-
- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7/Dockerfile)
39+
- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7/Dockerfile)
4040

41-
- [`7-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7-slim/Dockerfile)
41+
- [`7-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7-slim/Dockerfile)
4242

43-
- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7-slim-fips/Dockerfile)
43+
- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7-slim-fips/Dockerfile)
4444

4545
# Quick reference (cont.)
4646

spark/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ WARNING:
4848

4949
- [`3.5.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-r-ubuntu/Dockerfile)
5050

51-
- [`3.4.2-scala2.12-java11-python3-ubuntu`, `3.4.2-python3`, `3.4.2`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-python3-ubuntu/Dockerfile)
51+
- [`3.4.3-scala2.12-java11-python3-ubuntu`, `3.4.3-python3`, `3.4.3`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-ubuntu/Dockerfile)
5252

53-
- [`3.4.2-scala2.12-java11-r-ubuntu`, `3.4.2-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-r-ubuntu/Dockerfile)
53+
- [`3.4.3-scala2.12-java11-r-ubuntu`, `3.4.3-r`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-r-ubuntu/Dockerfile)
5454

55-
- [`3.4.2-scala2.12-java11-ubuntu`, `3.4.2-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-ubuntu/Dockerfile)
55+
- [`3.4.3-scala2.12-java11-ubuntu`, `3.4.3-scala`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-ubuntu/Dockerfile)
5656

57-
- [`3.4.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-python3-r-ubuntu/Dockerfile)
57+
- [`3.4.3-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-r-ubuntu/Dockerfile)
5858

5959
# Quick reference (cont.)
6060

0 commit comments

Comments
 (0)