9 lines
237 B
Plaintext
9 lines
237 B
Plaintext
# Containerfile for adding the debuginfo of ubi micro rpm, based container
|
|
# with some tools.
|
|
ARG BASE
|
|
FROM $BASE
|
|
|
|
USER root
|
|
RUN microdnf install MariaDB-server-debug-${MARIADB_VERSION} MariaDB-backup-debug-${MARIADB_VERSION}
|
|
USER mysql
|