Skip to content

Commit 45ab560

Browse files
author
Crate Jenkins
committed
Updated Dockerfile to use CrateDB version 5.10.7.
1 parent c03b358 commit 45ab560

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ RUN groupadd crate \
1919
x86_64) echo x64_linux ;; \
2020
aarch64) echo aarch64_linux ;; \
2121
esac)" \
22-
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.10.6.tar.gz \
22+
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.10.7.tar.gz \
2323
&& curl -fSL -O ${CRATE_URL} \
2424
&& curl -fSL -O ${CRATE_URL}.asc \
2525
&& export GNUPGHOME="$(mktemp -d)" \
2626
&& gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
27-
&& gpg --batch --verify crate-5.10.6.tar.gz.asc crate-5.10.6.tar.gz \
28-
&& rm -rf "$GNUPGHOME" crate-5.10.6.tar.gz.asc \
29-
&& tar -xf crate-5.10.6.tar.gz -C /crate --strip-components=1 \
30-
&& rm crate-5.10.6.tar.gz
27+
&& gpg --batch --verify crate-5.10.7.tar.gz.asc crate-5.10.7.tar.gz \
28+
&& rm -rf "$GNUPGHOME" crate-5.10.7.tar.gz.asc \
29+
&& tar -xf crate-5.10.7.tar.gz -C /crate --strip-components=1 \
30+
&& rm crate-5.10.7.tar.gz
3131

3232
# Install crash
3333
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
6161
COPY --chown=1000:0 config/log4j2.properties /crate/config/log4j2.properties
6262

6363
LABEL maintainer="Crate.io <[email protected]>" \
64-
org.opencontainers.image.created="2025-05-12T12:44:57.641286" \
64+
org.opencontainers.image.created="2025-05-26T12:14:57.152937" \
6565
org.opencontainers.image.title="crate" \
6666
org.opencontainers.image.description="CrateDB is a distributed SQL database that handles massive amounts of machine data in real-time." \
6767
org.opencontainers.image.url="https://crate.io/products/cratedb/" \
6868
org.opencontainers.image.source="https://github.com/crate/docker-crate" \
6969
org.opencontainers.image.vendor="Crate.io" \
70-
org.opencontainers.image.version="5.10.6"
70+
org.opencontainers.image.version="5.10.7"
7171

7272
COPY docker-entrypoint.sh /
7373

0 commit comments

Comments
 (0)