mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2026-07-17 16:36:49 +00:00
VNC-151 Fixing rebase issue
This commit is contained in:
parent
243784d5e5
commit
c73b43e051
3 changed files with 3 additions and 9 deletions
|
|
@ -49,10 +49,6 @@ RUN zypper install -ny \
|
||||||
zlib-devel \
|
zlib-devel \
|
||||||
libva-devel
|
libva-devel
|
||||||
|
|
||||||
RUN if [ "$(uname -m)" = "x86_64" ]; then \
|
|
||||||
zypper install -ny intel-media-driver; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
RUN groupadd -g 1000 docker && \
|
RUN groupadd -g 1000 docker && \
|
||||||
useradd -u 1000 -g docker docker
|
useradd -u 1000 -g docker docker
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,10 +51,6 @@ RUN zypper install -ny \
|
||||||
zlib-devel \
|
zlib-devel \
|
||||||
libva-devel
|
libva-devel
|
||||||
|
|
||||||
RUN if [ "$(uname -m)" = "x86_64" ]; then \
|
|
||||||
zypper install -ny intel-media-driver; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
RUN useradd -u 1000 docker && \
|
RUN useradd -u 1000 docker && \
|
||||||
usermod -a -G docker docker
|
usermod -a -G docker docker
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,10 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
|
||||||
RUN apt install -y nodejs nginx
|
RUN apt install -y nodejs nginx
|
||||||
|
|
||||||
# x86_64 specific operations
|
# x86_64 specific operations
|
||||||
|
# Packages required for VA-API hardware acceleration (Mesa + Intel)
|
||||||
RUN if [ "$(arch)" = "x86_64" ]; then \
|
RUN if [ "$(arch)" = "x86_64" ]; then \
|
||||||
apt-get update && apt-get install -y intel-media-va-driver-non-free; \
|
apt-get update && apt-get install -y vainfo mesa-va-drivers mesa-vulkan-drivers \
|
||||||
|
intel-media-va-driver-non-free; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ENV SCRIPTS_DIR=/tmp/scripts
|
ENV SCRIPTS_DIR=/tmp/scripts
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue