From e778cc4029a71290fbb15002e01c0be0ffeb5600 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 13:23:57 -0800 Subject: [PATCH] add pwa icons, title properly --- Dockerfile | 8 +++++++- Dockerfile.aarch64 | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 889ace48..b93ade7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,13 +5,19 @@ ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" - ARG DEBIAN_FRONTEND="noninteractive" +# title +ENV TITLE="Ubuntu KDE" + # 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 36169802..dcdfbb9f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -5,13 +5,19 @@ ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" - ARG DEBIAN_FRONTEND="noninteractive" +# title +ENV TITLE="Alpine KDE" + # 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 && \