mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
* add nvidia dockerfile. * add nvidia docker to build. * remove vaapi. * add google chrome and brave. * upgrade to virtualgl 3.1. * add disable-seccomp-filter-sandbox to chrome. * use vgl display in vglrun. * Revert "use vgl display in vglrun." This reverts commit 0cd556b5d805c0f7fe3dfe84a0b81d4375e19d8d. * update chrome params. * update changelog. * update brave. * update CI.
22 lines
721 B
Docker
22 lines
721 B
Docker
ARG BASE_IMAGE=m1k1o/neko:nvidia-base
|
|
FROM $BASE_IMAGE
|
|
|
|
ARG SRC_URL="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"
|
|
|
|
#
|
|
# install google chrome
|
|
RUN set -eux; apt-get update; \
|
|
wget -O /tmp/google-chrome.deb "${SRC_URL}"; \
|
|
apt-get install -y --no-install-recommends openbox /tmp/google-chrome.deb; \
|
|
#
|
|
# clean up
|
|
apt-get clean -y; \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
|
|
|
|
#
|
|
# copy configuation files
|
|
COPY supervisord.nvidia.conf /etc/neko/supervisord/google-chrome.conf
|
|
COPY --chown=neko preferences.json /home/neko/.config/google-chrome/Default/Preferences
|
|
COPY policies.json /etc/opt/chrome/policies/managed/policies.json
|
|
COPY openbox.xml /etc/neko/openbox.xml
|