-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Dockerfile to use CrateDB version 5.9.4.
- Loading branch information
Crate Jenkins
committed
Nov 27, 2024
1 parent
2b0e73c
commit 94290e5
Showing
1 changed file
with
7 additions
and
7 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 |
---|---|---|
|
@@ -19,15 +19,15 @@ RUN groupadd crate \ | |
x86_64) echo x64_linux ;; \ | ||
aarch64) echo aarch64_linux ;; \ | ||
esac)" \ | ||
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.9.3.tar.gz \ | ||
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.9.4.tar.gz \ | ||
&& curl -fSL -O ${CRATE_URL} \ | ||
&& curl -fSL -O ${CRATE_URL}.asc \ | ||
&& export GNUPGHOME="$(mktemp -d)" \ | ||
&& gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \ | ||
&& gpg --batch --verify crate-5.9.3.tar.gz.asc crate-5.9.3.tar.gz \ | ||
&& rm -rf "$GNUPGHOME" crate-5.9.3.tar.gz.asc \ | ||
&& tar -xf crate-5.9.3.tar.gz -C /crate --strip-components=1 \ | ||
&& rm crate-5.9.3.tar.gz | ||
&& gpg --batch --verify crate-5.9.4.tar.gz.asc crate-5.9.4.tar.gz \ | ||
&& rm -rf "$GNUPGHOME" crate-5.9.4.tar.gz.asc \ | ||
&& tar -xf crate-5.9.4.tar.gz -C /crate --strip-components=1 \ | ||
&& rm crate-5.9.4.tar.gz | ||
|
||
# Install crash | ||
RUN curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.31.5 \ | ||
|
@@ -61,13 +61,13 @@ COPY --chown=1000:0 config/crate.yml /crate/config/crate.yml | |
COPY --chown=1000:0 config/log4j2.properties /crate/config/log4j2.properties | ||
|
||
LABEL maintainer="Crate.io <[email protected]>" \ | ||
org.opencontainers.image.created="2024-11-14T12:05:43.779769" \ | ||
org.opencontainers.image.created="2024-11-27T14:37:47.959903" \ | ||
org.opencontainers.image.title="crate" \ | ||
org.opencontainers.image.description="CrateDB is a distributed SQL database that handles massive amounts of machine data in real-time." \ | ||
org.opencontainers.image.url="https://crate.io/products/cratedb/" \ | ||
org.opencontainers.image.source="https://github.com/crate/docker-crate" \ | ||
org.opencontainers.image.vendor="Crate.io" \ | ||
org.opencontainers.image.version="5.9.3" | ||
org.opencontainers.image.version="5.9.4" | ||
|
||
COPY docker-entrypoint.sh / | ||
|
||
|