2024-08-04 10:51:49 +10:00
|
|
|
# Containerfile for adding the debuginfo of ubi micro rpm, based container
|
|
|
|
# with some tools.
|
|
|
|
ARG BASE
|
|
|
|
FROM $BASE
|
|
|
|
|
|
|
|
USER root
|
2024-08-14 16:42:05 +10:00
|
|
|
RUN microdnf install -y MariaDB-server-debuginfo-${MARIADB_VERSION} MariaDB-backup-debuginfo-${MARIADB_VERSION}
|
2024-08-04 10:51:49 +10:00
|
|
|
USER mysql
|