Files
neko/Dockerfile
Vladimir Hodakov 76d68ad8a1
Some checks failed
ci/woodpecker/push/build/1 Pipeline failed
ci/woodpecker/push/tag unknown status
ci/woodpecker/push/build/2 Pipeline failed
The fuck it still uses bullseye, okay
2025-09-27 20:24:35 +04:00

44 lines
1.2 KiB
Docker

FROM ghcr.io/m1k1o/neko/xfce:3.0.8
# copy sources list file
COPY sources.list /etc/apt/sources.list
ENV DEBIAN_FRONTEND=noninteractive
# update the system
RUN set -eux; \
apt-get update; \
apt-get -y upgrade;
# install brave
RUN set -eux; \
curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg \
https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg; \
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] https://brave-browser-apt-release.s3.brave.com/ stable main" | \
tee /etc/apt/sources.list.d/brave-browser-release.list; \
apt update; \
apt install -y brave-browser
# install transmission and VLC
RUN set -eux; \
apt-get install -y transmission-gtk vlc
# install gstreamer plugins
RUN set -eux; \
apt-get install -y gstreamer1.0-plugins-good gstreamer1.0-plugins-bad
# add user to sudoers
RUN set -eux; \
usermod -aG sudo neko; \
echo "neko:neko" | chpasswd; \
echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
# clean up
RUN set -eux; \
apt-get clean -y; \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
# copy configuation files
COPY supervisord.conf /etc/neko/supervisord/xfce.conf
VOLUME /home/neko