File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,21 @@ FROM jlesage/baseimage-gui:debian-11-v4
3
3
ENV APP_NAME="iDRAC 6" \
4
4
IDRAC_PORT=443 \
5
5
DISPLAY_WIDTH=801 \
6
- DISPLAY_HEIGHT=621 \
7
- DOCKER_IMAGE_PLATFORM=arm64
6
+ DISPLAY_HEIGHT=621
8
7
9
8
COPY keycode-hack.c /keycode-hack.c
10
9
11
10
RUN APP_ICON_URL=https://raw.githubusercontent.com/DomiStyle/docker-idrac6/master/icon.png && \
12
11
install_app_icon.sh "$APP_ICON_URL"
13
12
14
13
RUN 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 && \
18
19
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 && \
20
21
apt-get autoremove -y && \
21
22
rm -rf /var/lib/apt/lists/* && \
22
23
rm /keycode-hack.c
You can’t perform that action at this time.
0 commit comments