mirror of
https://github.com/MariaDB/mariadb-docker.git
synced 2025-04-19 06:02:18 +03:00
9 lines
248 B
Plaintext
9 lines
248 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 -y MariaDB-server-debuginfo-${MARIADB_VERSION} MariaDB-backup-debuginfo-${MARIADB_VERSION}
|
|
USER mysql
|