From 0630163102ff9ce6d6ac78288c930aa038d3bab1 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 13:48:43 -0800 Subject: [PATCH] add pwa icons, title properly --- Dockerfile | 8 ++++++++ Dockerfile.aarch64 | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/Dockerfile b/Dockerfile index ea770c2a..1fb00e06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,20 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Debian MATE" + 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 ****" && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y --no-install-recommends \ chromium \ + chromium-l10n \ eom \ mate-desktop-environment-core \ pluma && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index efd63013..a2446b52 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -6,12 +6,20 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Debian MATE" + 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 ****" && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y --no-install-recommends \ chromium \ + chromium-l10n \ eom \ mate-desktop-environment-core \ pluma && \