Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

# DRM website: https://www.dell.com/support/home/en-us/Drivers/DriversDetails?driverid=HHV83
# DRM website: https://www.dell.com/support/home/en-us/drivers/driversdetails?driverId=JKGDG

# Install needed tools, clean up, download and install DRM, clean up
RUN apt-get update && \
apt-get install -y wget socat file && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
wget -U drm -O drm.bin https://dl.dell.com/FOLDER10693640M/1/DRMInstaller_3.4.4.908.bin && \
wget -U drm -O drm.bin https://downloads.dell.com/FOLDER12894273M/1/DRMInstaller_3.4.8.1086.bin && \
sh drm.bin -i silent && \
rm -rf /tmp/*

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ drm: ## Create Dell Repository Manager image
ifndef REGISTRY
$(eval REGISTRY="")
endif
docker build --rm=true --pull -t $(REGISTRY)/$@:3.4.4 -f Dockerfile .
docker build --rm=true --pull -t $(REGISTRY)/$@:3.4.8 -f Dockerfile .
9 changes: 9 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

# Run Docker container
docker run -d --name dell-drm --tmpfs /tmp -p 8091:8091 dell-drm:3.4.8

# Wait DRM startup then open web browser
echo Wait about 30 seconds then open https://localhost:8091/drm/ ...
sleep 30
open https://localhost:8091/drm/ &