610e3044ad
Even though we use `ubi8-minimal` as the parent of our container, it still has many RPMs installed that aren't necessary to run the Keycloak server. Also, since the JDK RPM (that we install on top of `ubi8-minimal`) is designed for general use, it pulls in more dependency RPMs than it strictly needs to, like cups and avahi. Keycloak will never need to access a printer itself! Trimming down these excess RPMs will improve our CVE statistics with automated scanners, and therefore let us perform fewer CVE rebuilds. `ubi8-null.sh` uses the low-level `rpm` command to identify and forcibly remove dependencies and operating system files that are not required to boot our Quarkus-based server. This includes `microdnf` and `rpm` itself! I have preserved bash however, so it's still possible to debug the container from a shell. I've created an initial set of allow/disallow lists, that seems to pass a smoke test (server boots, admin console works). This leaves 37 packages installed, with 96 removed relative to `ubi8-minimal`. We could go more minimal than this, or less minimal if required. Trial and error is required. Closes #16902
36 lines
1.1 KiB
Docker
36 lines
1.1 KiB
Docker
FROM registry.access.redhat.com/ubi8 AS ubi-micro-build
|
|
|
|
ENV KEYCLOAK_VERSION 999-SNAPSHOT
|
|
ARG KEYCLOAK_DIST=https://github.com/keycloak/keycloak/releases/download/$KEYCLOAK_VERSION/keycloak-$KEYCLOAK_VERSION.tar.gz
|
|
|
|
RUN dnf install -y tar gzip
|
|
|
|
ADD $KEYCLOAK_DIST /tmp/keycloak/
|
|
|
|
# The next step makes it uniform for local development and upstream built.
|
|
# If it is a local tar archive then it is unpacked, if from remote is just downloaded.
|
|
RUN (cd /tmp/keycloak && \
|
|
tar -xvf /tmp/keycloak/keycloak-*.tar.gz && \
|
|
rm /tmp/keycloak/keycloak-*.tar.gz) || true
|
|
|
|
RUN mv /tmp/keycloak/keycloak-* /opt/keycloak && mkdir -p /opt/keycloak/data
|
|
RUN chmod -R g+rwX /opt/keycloak
|
|
|
|
ADD ubi8-null.sh /tmp/
|
|
RUN bash /tmp/ubi8-null.sh java-17-openjdk-headless glibc-langpack-en
|
|
|
|
FROM registry.access.redhat.com/ubi8-micro
|
|
ENV LANG en_US.UTF-8
|
|
|
|
COPY --from=ubi-micro-build /tmp/null/rootfs/ /
|
|
COPY --from=ubi-micro-build --chown=1000:0 /opt/keycloak /opt/keycloak
|
|
|
|
RUN echo "keycloak:x:0:root" >> /etc/group && \
|
|
echo "keycloak:x:1000:0:keycloak user:/opt/keycloak:/sbin/nologin" >> /etc/passwd
|
|
|
|
USER 1000
|
|
|
|
EXPOSE 8080
|
|
EXPOSE 8443
|
|
|
|
ENTRYPOINT [ "/opt/keycloak/bin/kc.sh" ]
|