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 XFCE" 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 ****" && \ add-apt-repository ppa:xtradeb/apps && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install --no-install-recommends -y \ chromium \ mousepad \ xfce4-terminal \ xfce4 \ xubuntu-default-settings \ xubuntu-icon-theme && \ echo "**** xfce tweaks ****" && \ sed -i \ 's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \ /usr/share/applications/chromium.desktop && \ mv \ /usr/bin/exo-open \ /usr/bin/exo-open-real && \ mv \ /usr/bin/thunar \ /usr/bin/thunar-real && \ mv \ /usr/bin/chromium \ /usr/bin/chromium-browser && \ rm -f \ /etc/xdg/autostart/xscreensaver.desktop && \ echo "**** cleanup ****" && \ apt-get autoclean && \ rm -rf \ /config/.cache \ /config/.launchpadlib \ /var/lib/apt/lists/* \ /var/tmp/* \ /tmp/* # add local files COPY /root / # ports and volumes EXPOSE 3000 VOLUME /config