docker-idrac6/Dockerfile

32 lines
1006 B
Docker
Raw Normal View History

FROM jlesage/baseimage-gui:debian-11
2018-04-05 15:42:34 +02:00
ENV APP_NAME="iDRAC 6" \
IDRAC_PORT=443 \
DISPLAY_WIDTH=801 \
DISPLAY_HEIGHT=621
2018-04-05 15:42:34 +02:00
2019-03-22 15:54:41 +01:00
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"
2018-12-21 10:05:54 +01:00
RUN apt-get update && \
2022-03-01 04:14:42 +01:00
apt-get install -y wget software-properties-common libx11-dev gcc xdotool && \
2023-03-29 11:00:18 +02:00
wget -nc https://cdn.azul.com/zulu/bin/zulu8.68.0.21-ca-jdk8.0.362-linux_amd64.deb && \
apt-get install -y ./zulu8.68.0.21-ca-jdk8.0.362-linux_amd64.deb && \
2019-03-22 15:54:41 +01:00
gcc -o /keycode-hack.so /keycode-hack.c -shared -s -ldl -fPIC && \
2019-04-02 13:49:15 +02:00
apt-get remove -y gcc software-properties-common && \
2019-04-02 13:17:32 +02:00
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/* && \
rm /keycode-hack.c
2018-04-05 15:42:34 +02:00
RUN mkdir /app && \
chown ${USER_ID}:${GROUP_ID} /app
2023-03-29 11:00:18 +02:00
RUN rm /usr/lib/jvm/zulu-8-amd64/jre/lib/security/java.security
2018-04-05 15:42:34 +02:00
COPY startapp.sh /startapp.sh
2022-03-01 04:14:42 +01:00
COPY mountiso.sh /mountiso.sh
2018-04-05 15:42:34 +02:00
WORKDIR /app