FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble # set version label ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" # title ENV TITLE="Ubuntu MATE" RUN \ echo "**** add icon ****" && \ curl -o \ /usr/share/selkies/www/icon.png \ https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ echo "**** install packages ****" && \ apt-key adv \ --keyserver hkp://keyserver.ubuntu.com:80 \ --recv-keys 5301FA4FD93244FBC6F6149982BB6851C64F6880 && \ echo \ "deb https://ppa.launchpadcontent.net/xtradeb/apps/ubuntu noble main" > \ /etc/apt/sources.list.d/xtradeb.list && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install --no-install-recommends -y \ ayatana-indicator-application \ chromium \ mate-applets \ mate-applet-brisk-menu \ mate-terminal \ pluma \ ubuntu-mate-artwork \ ubuntu-mate-default-settings \ ubuntu-mate-desktop \ ubuntu-mate-icon-themes && \ echo "**** mate tweaks ****" && \ sed -i \ 's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \ /usr/share/applications/chromium.desktop && \ rm -f \ /etc/xdg/autostart/mate-power-manager.desktop \ /etc/xdg/autostart/mate-screensaver.desktop \ /usr/bin/mate-screensaver && \ echo "**** cleanup ****" && \ apt-get autoclean && \ rm -rf \ /config/.cache \ /config/.launchpadlib \ /usr/share/gvfs/remote-volume-monitors/* \ /var/lib/apt/lists/* \ /var/tmp/* \ /tmp/* # add local files COPY /root / # ports and volumes EXPOSE 3000 VOLUME /config