-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Go 1.22, Java 21; update to PHP 8.3, Ruby 3.3, Graphviz 9
- Loading branch information
1 parent
a47f778
commit 119615c
Showing
16 changed files
with
65 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM golang:1.22-alpine | ||
|
||
# Copy files common for all images | ||
COPY 4img/* ./ | ||
|
||
RUN ./prepare-alpine-init | ||
|
||
# Ruby is required for test infrastructure (aggregators, test result converters) to work | ||
RUN ./prepare-alpine-ruby | ||
|
||
# Required to download go-junit-report release in ./prepare-go-deps | ||
RUN apk add curl | ||
|
||
# Required for `go get` to work | ||
RUN apk add git | ||
|
||
RUN ./prepare-alpine-uninit | ||
|
||
# # Install rest of go-specific dependencies | ||
# RUN ./prepare | ||
|
||
# Validate that we've got correct version, e.g. something like this: | ||
# | ||
# $ go version | ||
# go version go1.22.0 linux/amd64 | ||
|
||
RUN ./validate '^go version go1\.22\.' |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM eclipse-temurin:21 | ||
|
||
# Copy files common for all images | ||
COPY 4img/* ./ | ||
|
||
# Install all dependencies | ||
RUN ./prepare-apt-ruby | ||
RUN ./prepare-java-deps | ||
|
||
# Validate that we've got correct version, e.g. something like this: | ||
# | ||
# $ java -version | ||
# openjdk version "21.0.2" 2024-01-16 LTS | ||
# OpenJDK Runtime Environment Temurin-21.0.2+13 (build 21.0.2+13-LTS) | ||
# OpenJDK 64-Bit Server VM Temurin-21.0.2+13 (build 21.0.2+13-LTS, mixed mode, sharing) | ||
|
||
RUN ./validate '^openjdk version "21\.' |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../generic-build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../generic-run-it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../generic-build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../generic-run-it |