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 June 6, 2024 13:26 — 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
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 && \
dnf clean all && dnf -y --setopt="tsflags=nodocs" upgrade && \
dnf clean all