File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,20 +3,21 @@ FROM jlesage/baseimage-gui:debian-11-v4
33ENV APP_NAME="iDRAC 6" \
44 IDRAC_PORT=443 \
55 DISPLAY_WIDTH=801 \
6- DISPLAY_HEIGHT=621 \
7- DOCKER_IMAGE_PLATFORM=arm64
6+ DISPLAY_HEIGHT=621
87
98COPY keycode-hack.c /keycode-hack.c
109
1110RUN APP_ICON_URL=https://raw.githubusercontent.com/DomiStyle/docker-idrac6/master/icon.png && \
1211 install_app_icon.sh "$APP_ICON_URL"
1312
1413RUN apt-get update && \
15- apt-get install -y wget software-properties-common libx11-dev gcc xdotool && \
16- wget -nc https://cdn.azul.com/zulu-embedded/bin/zulu8.70.0.23-ca-jdk8.0.372-linux_arm64.deb && \
17- apt-get install -y ./zulu8.70.0.23-ca-jdk8.0.372-linux_arm64.deb && \
14+ apt-get install -y software-properties-common libx11-dev gcc xdotool gnupg ca-certificates curl && \
15+ curl -s https://repos.azul.com/azul-repo.key | gpg --dearmor -o /usr/share/keyrings/azul.gpg
16+ echo "deb [signed-by=/usr/share/keyrings/azul.gpg] https://repos.azul.com/zulu/deb stable main" | tee /etc/apt/sources.list.d/zulu.list
17+ apt-get update && \
18+ apt-get install -y zulu8-jre && \
1819 gcc -o /keycode-hack.so /keycode-hack.c -shared -s -ldl -fPIC && \
19- apt-get remove -y gcc software-properties-common && \
20+ apt-get remove -y gcc software-properties-common gnupg ca-certificates curl && \
2021 apt-get autoremove -y && \
2122 rm -rf /var/lib/apt/lists/* && \
2223 rm /keycode-hack.c
You can’t perform that action at this time.
0 commit comments