-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
ARG OPENJDK_VERSION | ||
ARG UBUNTU_VERSION | ||
ARG DEEPHAVEN_SOURCES | ||
ARG COMMIT_HASH | ||
|
||
# ------------------------------------- | ||
|
||
|
@@ -41,7 +40,7 @@ FROM docker.io/ubuntu:${UBUNTU_VERSION} as os-bits | |
ARG DEBIAN_FRONTEND="noninteractive" | ||
ARG TARGETARCH | ||
ARG UBUNTU_VERSION | ||
ARG COMMIT_HASH | ||
ARG GIT_REVISION | ||
RUN \ | ||
--mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-${TARGETARCH}-${UBUNTU_VERSION} \ | ||
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=apt-${TARGETARCH}-${UBUNTU_VERSION} \ | ||
|
@@ -65,7 +64,7 @@ ENV \ | |
LC_ALL='en_US.UTF-8' | ||
LABEL \ | ||
io.deephaven.server.ubuntu.version="${UBUNTU_VERSION}" \ | ||
org.opencontainers.image.revision="${COMMIT_HASH}" \ | ||
org.opencontainers.image.revision="${GIT_REVISION}" \ | ||
org.opencontainers.image.vendor="Deephaven Data Labs" \ | ||
org.opencontainers.image.licenses="Deephaven Community License Agreement 1.0" \ | ||
org.opencontainers.image.authors="[email protected]" \ | ||
|