-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc9ad5b
commit d12e8e1
Showing
4 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ARG VERSION=11 | ||
|
||
FROM mariadb:${VERSION}-ubi | ||
|
||
LABEL maintainer="Thien Tran [email protected]" | ||
|
||
USER root | ||
|
||
RUN microdnf -y upgrade \ | ||
&& rm -rf /usr/local/bin/gosu \ | ||
&& curl https://copr.fedorainfracloud.org/coprs/secureblue/hardened_malloc/repo/rhel-9/secureblue-hardened_malloc-rhel-9.repo \ | ||
-o /etc/yum.repos.d/_copr:copr.fedorainfracloud.org:secureblue:hardened_malloc.repo \ | ||
&& microdnf install -y crypto-policies-scripts hardened_malloc \ | ||
&& update-crypto-policies --set FUTURE \ | ||
&& echo libhardened_malloc.so > /etc/ld.so.preload | ||
|
||
USER mysql |