mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
This commit introduces several new components and improvements: - Added Switch module with firmware update and configuration support - Implemented new media streaming capabilities - Updated various UI elements and CSS styles - Enhanced keyboard and mouse event handling - Added new validators and configuration options - Updated Python version support to 3.13 - Improved error handling and logging
118 lines
2.7 KiB
Docker
118 lines
2.7 KiB
Docker
FROM archlinux/archlinux:base
|
|
|
|
RUN mkdir -p /etc/pacman.d/hooks \
|
|
&& ln -s /dev/null /etc/pacman.d/hooks/30-systemd-tmpfiles.hook
|
|
|
|
RUN echo 'Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist \
|
|
&& pacman-key --init \
|
|
&& pacman-key --populate archlinux
|
|
|
|
RUN pacman --noconfirm --ask=4 -Syy \
|
|
&& pacman --needed --noconfirm --ask=4 -S \
|
|
archlinux-keyring \
|
|
&& pacman --needed --noconfirm --ask=4 -S \
|
|
glibc \
|
|
pacman \
|
|
openssl \
|
|
openssl-1.1 \
|
|
&& pacman-db-upgrade \
|
|
&& pacman --noconfirm --ask=4 -Syu \
|
|
&& pacman --needed --noconfirm --ask=4 -S \
|
|
p11-kit \
|
|
ca-certificates \
|
|
ca-certificates-mozilla \
|
|
ca-certificates-utils \
|
|
&& pacman -Syu --noconfirm --ask=4 \
|
|
&& pacman -S --needed --noconfirm --ask=4 \
|
|
base-devel \
|
|
autoconf-archive \
|
|
help2man \
|
|
m4 \
|
|
vim \
|
|
git \
|
|
libjpeg \
|
|
libevent \
|
|
libutil-linux \
|
|
libbsd \
|
|
python \
|
|
python-pip \
|
|
python-build \
|
|
python-wheel \
|
|
python-setuptools \
|
|
python-tox \
|
|
python-mako \
|
|
python-yaml \
|
|
python-aiohttp \
|
|
python-aiofiles \
|
|
python-async-lru \
|
|
python-passlib \
|
|
python-pyotp \
|
|
python-qrcode \
|
|
python-pyserial \
|
|
python-pyudev \
|
|
python-setproctitle \
|
|
python-psutil \
|
|
python-netifaces \
|
|
python-systemd \
|
|
python-dbus \
|
|
python-dbus-next \
|
|
python-pygments \
|
|
python-pam \
|
|
python-pillow \
|
|
python-xlib \
|
|
python-mako \
|
|
libxkbcommon \
|
|
python-hidapi \
|
|
python-ldap \
|
|
python-zstandard \
|
|
libgpiod \
|
|
freetype2 \
|
|
nginx-mainline \
|
|
tesseract \
|
|
tesseract-data-eng \
|
|
tesseract-data-rus \
|
|
ipmitool \
|
|
socat \
|
|
eslint \
|
|
npm \
|
|
shellcheck \
|
|
&& (pacman -Sc --noconfirm || true) \
|
|
&& rm -rf /var/cache/pacman/pkg/*
|
|
|
|
COPY testenv/requirements.txt requirements.txt
|
|
RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple \
|
|
&& pip install --break-system-packages -r requirements.txt \
|
|
&& pip cache purge
|
|
|
|
# https://stackoverflow.com/questions/57534295
|
|
WORKDIR /root
|
|
RUN npm config set registry https://registry.npmmirror.com \
|
|
&& npm install htmlhint -g \
|
|
&& npm install pug \
|
|
&& npm install pug-cli -g \
|
|
&& npm install @babel/eslint-parser -g \
|
|
&& npm cache clean -f
|
|
WORKDIR /
|
|
|
|
ARG USTREAMER_MIN_VERSION
|
|
ENV USTREAMER_MIN_VERSION $USTREAMER_MIN_VERSION
|
|
RUN echo $USTREAMER_MIN_VERSION
|
|
RUN git clone https://github.com/pikvm/ustreamer \
|
|
&& cd ustreamer \
|
|
&& make WITH_PYTHON=1 PREFIX=/usr DESTDIR=/ install \
|
|
&& cd - \
|
|
&& rm -rf ustreamer
|
|
|
|
RUN mkdir -p \
|
|
/etc/kvmd/{nginx,vnc} \
|
|
/var/lib/kvmd/msd \
|
|
/var/lib/kvmd/pst/data \
|
|
/opt/vc/bin
|
|
|
|
COPY testenv/fakes/vcgencmd /usr/bin/
|
|
COPY testenv/fakes/sys /fake_sysfs/sys
|
|
COPY testenv/fakes/proc /fake_procfs/proc
|
|
COPY testenv/fakes/etc /fake_etc/etc
|
|
|
|
CMD /bin/bash
|