File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 77FROM almalinux:10-kitten
88
99# Install prerequisites and clean up repository indexes again
10- RUN dnf install --nodocs --assumeyes gzip python3 shadow-utils tar util-linux gnupg \
10+ RUN dnf install --nodocs --assumeyes gzip python3 shadow-utils util-linux gnupg \
1111 && dnf clean all \
1212 && rm -rf /var/cache/yum
1313
14+ RUN tar --version
15+
1416# Install CrateDB
1517RUN groupadd crate \
1618 && useradd -u 1000 -g crate -d /crate crate \
@@ -26,8 +28,8 @@ RUN groupadd crate \
2628 && gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
2729 && gpg --batch --verify crate-6.2.0.tar.gz.asc crate-6.2.0.tar.gz \
2830 && rm -rf "$GNUPGHOME" crate-6.2.0.tar.gz.asc \
29- && tar -xf crate-6.2.0.tar.gz -C /crate --strip-components=1 \
30- && file / crate/jdk/bin/java \
31+ && echo $(sha256sum crate-6.2.0.tar.gz) \
32+ && tar -xzvf crate-6.2.0.tar.gz -C /crate --strip-components=1 \
3133 && rm crate-6.2.0.tar.gz
3234
3335# Install crash
You can’t perform that action at this time.
0 commit comments