There was an error while loading. Please reload this page.
1 parent 0f779a8 commit d83bec6Copy full SHA for d83bec6
1 file changed
.github/scripts/Containerfile.xtask
@@ -14,13 +14,27 @@ RUN cd unpack && \
14
15
RUN chmod a+x /unpack/xtask
16
17
-FROM registry.access.redhat.com/ubi9/ubi:latest
+FROM docker.io/library/ubuntu:24.04
18
19
LABEL \
20
org.opencontainers.image.description="Trustify - xtask binary" \
21
org.opencontainers.image.source="https://github.com/guacsec/trustify"
22
23
-RUN dnf install --nodocs -y zlib openssl krb5-libs libzstd lz4-libs libxml2 unzip xz
+RUN apt-get update && \
24
+ apt-get install -y --no-install-recommends \
25
+ curl \
26
+ ca-certificates \
27
+ zlib1g \
28
+ openssl \
29
+ libkrb5-3 \
30
+ libzstd1 \
31
+ liblz4-1 \
32
+ libxml2 \
33
+ unzip \
34
+ xz-utils \
35
+ squashfs-tools \
36
+ btrfs-progs \
37
+ && rm -rf /var/lib/apt/lists/*
38
39
COPY --from=builder /unpack/xtask /usr/local/bin
40
0 commit comments