update
This commit is contained in:
@ -1,20 +1,20 @@
|
||||
ARG BASE_IMAGE=m1k1o/neko:base
|
||||
FROM $BASE_IMAGE
|
||||
|
||||
ENV BROWSER=librewolf
|
||||
#
|
||||
# install desktop and other programs
|
||||
# Install desktop and other programs
|
||||
RUN set -eux; apt-get update; \
|
||||
apt-get install -y --no-install-recommends xfce4 xfce4-terminal sudo; \
|
||||
apt-get install -y wget curl gnupg lsb-release apt-transport-https ca-certificates \
|
||||
git nano sxiv mpv rsync
|
||||
git nano sxiv mpv rsync kwrite xwallpaper
|
||||
|
||||
RUN set -eux; \
|
||||
#
|
||||
## yt-dlp
|
||||
## Install yt-dlp
|
||||
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /bin/yt-dlp; \
|
||||
chmod a+rx /bin/yt-dlp; \
|
||||
#
|
||||
# add user to sudoers
|
||||
# Add user to sudoers
|
||||
usermod -aG sudo neko; \
|
||||
echo "neko:neko" | chpasswd; \
|
||||
echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers; \
|
||||
@ -24,12 +24,18 @@ RUN set -eux; \
|
||||
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/librewolf.gpg] http://deb.librewolf.net $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/librewolf.list; \
|
||||
apt-get update; \
|
||||
apt-get install librewolf -y; \
|
||||
#
|
||||
# Install FreeTube
|
||||
#export VER="0.19.2"; \
|
||||
#wget https://github.com/FreeTubeApp/FreeTube/releases/download/v${VER}-beta/FreeTube_${VER}_amd64.deb; \
|
||||
#apt-get install -f ./FreeTube_${VER}_amd64.deb -y; \
|
||||
# clean up
|
||||
apt-get clean -y; \
|
||||
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
|
||||
#
|
||||
# copy dotfiles
|
||||
# Copy dotfiles
|
||||
COPY dots /dots
|
||||
RUN set -eux; rsync --recursive /dots/ /
|
||||
#
|
||||
# copy configuation files
|
||||
# Copy configuation files
|
||||
COPY supervisord.conf /etc/neko/supervisord/xfce.conf
|
||||
|
Reference in New Issue
Block a user