Minimize the RPM content of the Quarkus container
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
2023-02-06 23:28:30 +00:00
|
|
|
FROM registry.access.redhat.com/ubi8 AS ubi-micro-build
|
2022-02-01 08:42:09 +00:00
|
|
|
|
2022-03-22 08:22:48 +00:00
|
|
|
ENV KEYCLOAK_VERSION 999-SNAPSHOT
|
2022-02-01 08:42:09 +00:00
|
|
|
ARG KEYCLOAK_DIST=https://github.com/keycloak/keycloak/releases/download/$KEYCLOAK_VERSION/keycloak-$KEYCLOAK_VERSION.tar.gz
|
|
|
|
|
Minimize the RPM content of the Quarkus container
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
2023-02-06 23:28:30 +00:00
|
|
|
RUN dnf install -y tar gzip
|
2022-02-01 08:42:09 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-03-17 17:50:38 +00:00
|
|
|
RUN mv /tmp/keycloak/keycloak-* /opt/keycloak && mkdir -p /opt/keycloak/data
|
2022-02-10 07:01:51 +00:00
|
|
|
RUN chmod -R g+rwX /opt/keycloak
|
|
|
|
|
Minimize the RPM content of the Quarkus container
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
2023-02-06 23:28:30 +00:00
|
|
|
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
|
2022-04-22 12:57:39 +00:00
|
|
|
ENV LANG en_US.UTF-8
|
2022-02-01 08:42:09 +00:00
|
|
|
|
Minimize the RPM content of the Quarkus container
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
2023-02-06 23:28:30 +00:00
|
|
|
COPY --from=ubi-micro-build /tmp/null/rootfs/ /
|
|
|
|
COPY --from=ubi-micro-build --chown=1000:0 /opt/keycloak /opt/keycloak
|
2022-02-01 08:42:09 +00:00
|
|
|
|
Minimize the RPM content of the Quarkus container
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
2023-02-06 23:28:30 +00:00
|
|
|
RUN echo "keycloak:x:0:root" >> /etc/group && \
|
2022-02-10 07:01:51 +00:00
|
|
|
echo "keycloak:x:1000:0:keycloak user:/opt/keycloak:/sbin/nologin" >> /etc/passwd
|
2022-02-01 08:42:09 +00:00
|
|
|
|
|
|
|
USER 1000
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
EXPOSE 8443
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/opt/keycloak/bin/kc.sh" ]
|