-
Notifications
You must be signed in to change notification settings - Fork 10
/
server-slim.hcl
101 lines (83 loc) · 2.2 KB
/
server-slim.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
group "default" {
targets = [
"server-slim"
]
}
# -------------------------------------
variable "REPO_PREFIX" {
default = "deephaven/"
}
variable "SERVER_SLIM_PREFIX" {
default = "server-slim"
}
variable "CACHE_PREFIX" {
default = "deephaven-server-docker-"
}
variable "DEEPHAVEN_SOURCES" {
// "released" means that the build will use the released sources - tar from GitHub
// "custom" means that the builder will provide the tar file
default = "released"
}
variable "DEEPHAVEN_VERSION" {
default = "0.36.1"
}
variable "GIT_REVISION" {
default = ""
}
variable "OPENJDK_VERSION" {
default = "21"
}
variable "UBUNTU_VERSION" {
default = "22.04"
}
variable "GRPC_HEALTH_PROBE_VERSION" {
default = "0.4.34"
}
variable "TAG" {
default = "latest"
}
variable "RELEASE" {
default = false
}
variable "MULTI_ARCH" {
default = false
}
variable "GITHUB_ACTIONS" {
default = false
}
// Due to our nightly builds, setting a build timestamp for org.opencontainers.image.created would
// cause a new image manifest to be created every night, which is something we don't want unless
// the base image has been updated.
// variable "BUILD_TIMESTAMP" {
// default = "${timestamp()}"
// }
# -------------------------------------
target "server-slim" {
context = "contexts/server-slim/"
tags = [
"${REPO_PREFIX}${SERVER_SLIM_PREFIX}:${TAG}",
equal("latest", TAG) ? "${REPO_PREFIX}${SERVER_SLIM_PREFIX}:${DEEPHAVEN_VERSION}" : ""
]
args = {
DEEPHAVEN_VERSION = DEEPHAVEN_VERSION
GIT_REVISION = GIT_REVISION
OPENJDK_VERSION = OPENJDK_VERSION
UBUNTU_VERSION = UBUNTU_VERSION
GRPC_HEALTH_PROBE_VERSION = GRPC_HEALTH_PROBE_VERSION
DEEPHAVEN_SOURCES = DEEPHAVEN_SOURCES
}
cache-from = [
GITHUB_ACTIONS ? "type=gha,scope=${CACHE_PREFIX}" : ""
]
cache-to = [
GITHUB_ACTIONS && RELEASE ? "type=gha,mode=max,scope=${CACHE_PREFIX}" : ""
]
platforms = [
MULTI_ARCH || RELEASE ? "linux/amd64" : "",
MULTI_ARCH || RELEASE ? "linux/arm64" : "",
]
output = [
RELEASE ? "type=registry" : ""
]
}
# -------------------------------------