Skip to content

Instantly share code, notes, and snippets.

View k0ste's full-sized avatar

Konstantin Shalygin k0ste

View GitHub Profile
@k0ste
k0ste / Dockerfile
Last active October 18, 2024 19:17 — forked from duckworth/Dockerfile
racadm on OSX
FROM "quay.io/centos/centos:stream9"
RUN dnf -y --setopt="tsflags=nodocs" upgrade && \
dnf -y --setopt="tsflags=nodocs" install wget
# https://www.redhat.com/en/blog/rhel-security-sha-1-package-signatures-distrusted-rhel-9
RUN update-crypto-policies --set DEFAULT:SHA1
RUN wget --progress=dot:giga -O bootstrap.cgi \
https://linux.dell.com/repo/hardware/dsu/bootstrap.cgi && \
bash bootstrap.cgi && rm -f bootstrap.cgi
RUN dnf -y install dell-system-update -y && \