mirror of
https://github.com/DomiStyle/docker-idrac6.git
synced 2024-12-21 21:35:21 +01:00
Update to debian-11 baseimage, set display resolution to reduce black space, switch to Zulu JDK-11, add Dell iDRAC icon
This commit is contained in:
parent
9c4bd7a4be
commit
4af0f04706
18
Dockerfile
18
Dockerfile
@ -1,15 +1,19 @@
|
||||
FROM jlesage/baseimage-gui:ubuntu-16.04
|
||||
FROM jlesage/baseimage-gui:debian-11
|
||||
|
||||
ENV APP_NAME="iDRAC 6" \
|
||||
IDRAC_PORT=443
|
||||
ENV APP_NAME="iDRAC 6" \
|
||||
IDRAC_PORT=443 \
|
||||
DISPLAY_WIDTH=801 \
|
||||
DISPLAY_HEIGHT=621
|
||||
|
||||
COPY keycode-hack.c /keycode-hack.c
|
||||
|
||||
RUN APP_ICON_URL=https://raw.githubusercontent.com/DomiStyle/docker-idrac6/master/icon.png && \
|
||||
install_app_icon.sh "$APP_ICON_URL"
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y wget software-properties-common && \
|
||||
add-apt-repository ppa:openjdk-r/ppa && \
|
||||
apt-get update && \
|
||||
apt-get install -y openjdk-7-jdk gcc && \
|
||||
apt-get install -y wget software-properties-common libx11-dev gcc && \
|
||||
wget -nc https://cdn.azul.com/zulu/bin/zulu7.52.0.11-ca-jdk7.0.332-linux_amd64.deb && \
|
||||
apt-get install -y ./zulu7.52.0.11-ca-jdk7.0.332-linux_amd64.deb && \
|
||||
gcc -o /keycode-hack.so /keycode-hack.c -shared -s -ldl -fPIC && \
|
||||
apt-get remove -y gcc software-properties-common && \
|
||||
apt-get autoremove -y && \
|
||||
|
Loading…
Reference in New Issue
Block a user