mirror of
https://github.com/NapNeko/NapCat-Docker.git
synced 2026-01-07 05:38:59 +08:00
26 lines
475 B
Docker
26 lines
475 B
Docker
FROM ubuntu:22.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV VNC_PASSWD=vncpasswd
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
openbox \
|
|
xorg \
|
|
dbus-user-session \
|
|
curl \
|
|
unzip \
|
|
xvfb \
|
|
supervisor \
|
|
libnotify4 \
|
|
libnss3 \
|
|
xdg-utils \
|
|
libsecret-1-0 \
|
|
ffmpeg \
|
|
libgbm1 \
|
|
libasound2 \
|
|
fonts-wqy-zenhei \
|
|
git \
|
|
gnutls-bin && \
|
|
apt-get clean --no-install-recommends && \
|
|
rm -rf /var/lib/apt/lists/* && \
|