-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·31 lines (20 loc) · 1.11 KB
/
Copy pathDockerfile
File metadata and controls
executable file
·31 lines (20 loc) · 1.11 KB
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
# Generated with JReleaser 1.25.0-SNAPSHOT at 2026-06-10T06:42:39.499837314Z
# Multi-stage build to avoid duplicate layers
FROM alpine:latest AS extractor
RUN apk add --no-cache unzip
COPY assembly/ /assembly/
RUN unzip /assembly/korvet-cli-0.17.0.zip -d /opt && \
rm /assembly/korvet-cli-0.17.0.zip && \
chmod +x /opt/korvet-cli-0.17.0/bin/korvet-cli
FROM azul/zulu-openjdk-alpine:25-jre
LABEL "org.opencontainers.image.title"="korvet-cli"
LABEL "org.opencontainers.image.description"="Kafka-compatible streaming service with automatic local/remote data tiering"
LABEL "org.opencontainers.image.url"="https://github.com/redis-field-engineering/korvet-dist"
LABEL "org.opencontainers.image.licenses"="Apache-2.0"
LABEL "org.opencontainers.image.version"="0.17.0"
LABEL "org.opencontainers.image.revision"="12f890156f0c19abab7a91f3813dd7ba006e1cc1"
LABEL "org.opencontainers.image.source"="https://github.com/redis-field-engineering/korvet-docker"
COPY --from=extractor /assembly /
COPY --from=extractor /opt/korvet-cli-0.17.0 /korvet-cli
ENV PATH="${PATH}:/korvet-cli/bin"
ENTRYPOINT ["/korvet-cli/bin/korvet-cli"]