mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2026-07-17 16:36:49 +00:00
VNC-151 Add Intel Media Driver (non-free) for x86_64 video acceleration to Ubuntu Jammy Dockerfile
This commit is contained in:
parent
478b91baeb
commit
e032c76515
1 changed files with 5 additions and 0 deletions
|
|
@ -16,6 +16,11 @@ RUN apt-get update && apt-get -y install ninja-build cmake nasm git libgnutls28-
|
|||
RUN apt-get update && apt-get -y install libpng-dev libtiff-dev libgif-dev libavcodec-dev libssl-dev libxrandr-dev \
|
||||
libxcursor-dev libavformat-dev libswscale-dev libva-dev
|
||||
|
||||
# x86_64 specific operations
|
||||
RUN if [ "$(arch)" = "x86_64" ]; then \
|
||||
apt-get update && apt-get install -y intel-media-va-driver-non-free; \
|
||||
fi
|
||||
|
||||
ENV SCRIPTS_DIR=/tmp/scripts
|
||||
COPY builder/scripts $SCRIPTS_DIR
|
||||
RUN $SCRIPTS_DIR/build-deps.sh
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue