-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-bake.hcl
47 lines (45 loc) · 1.38 KB
/
docker-bake.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
group "default" {
targets = ["233"]
}
target "232" {
name = "qodana-${edition}"
matrix = {
edition = ["android-community", "dotnet", "go", "js", "jvm", "jvm-community", "php", "python", "python-community"]
version = ["2023.2"]
}
args = {
QD_RELEASE = "2023.2"
BASE_TAG = "bullseye-slim"
DOTNET_TAG = "6.0-bullseye-slim"
GO_TAG = "1.21-bullseye"
NODE_TAG = "16-bullseye-slim"
PHP_TAG = "8.2-cli-bullseye"
COMPOSER_TAG="2.6.3"
}
tags = [
"docker.io/jetbrains/qodana:${edition}-${version}-latest"
]
# platforms = ["linux/amd64", "linux/arm64"] // uncomment to build for multiple platforms, but it will take more time
dockerfile = "${version}/${edition}/Dockerfile"
}
target "233" {
name = "qodana-${edition}"
matrix = {
edition = ["android-community", "dotnet", "go", "js", "jvm", "jvm-community", "php", "python", "python-community"]
version = ["2023.3"]
}
args = {
QD_RELEASE = "2023.3"
BASE_TAG = "bullseye-slim"
DOTNET_TAG = "6.0-bullseye-slim"
GO_TAG = "1.21-bullseye"
NODE_TAG = "16-bullseye-slim"
PHP_TAG = "8.2-cli-bullseye"
COMPOSER_TAG="2.6.3"
}
tags = [
"docker.io/jetbrains/qodana:${edition}-${version}-latest"
]
# platforms = ["linux/amd64", "linux/arm64"] // uncomment to build for multiple platforms, but it will take more time
dockerfile = "${version}/${edition}/Dockerfile"
}