From beec7fc9d249c8df1ced66eccaf30744408a178e Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 12:45:53 -0800 Subject: [PATCH] add pwa icons, title properly --- Dockerfile | 7 +++++++ Dockerfile.aarch64 | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1791fe34..7a427f93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,17 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Ubuntu XFCE" + # prevent Ubuntu's firefox stub from being installed COPY /root/etc/apt/preferences.d/firefox-no-snap /etc/apt/preferences.d/firefox-no-snap RUN \ + echo "**** add icon ****" && \ + curl -o \ + /kclient/public/icon.png \ + https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ echo "**** install packages ****" && \ add-apt-repository -y ppa:mozillateam/ppa && \ apt-get update && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 038f1047..38acda8a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -6,10 +6,17 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Ubuntu XFCE" + # prevent Ubuntu's firefox stub from being installed COPY /root/etc/apt/preferences.d/firefox-no-snap /etc/apt/preferences.d/firefox-no-snap RUN \ + echo "**** add icon ****" && \ + curl -o \ + /kclient/public/icon.png \ + https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ echo "**** install packages ****" && \ add-apt-repository -y ppa:mozillateam/ppa && \ apt-get update && \