From 15c9e702536465e50b312e8bff8abdf09571bb65 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 13:39:05 -0800 Subject: [PATCH] add pwa icons, title properly --- Dockerfile | 6 ++++++ Dockerfile.aarch64 | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/Dockerfile b/Dockerfile index a6d35349..8f28e957 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,14 @@ ARG MATE_VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Alpine 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 ****" && \ apk add --no-cache \ firefox \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 470e1205..cbe0c7c6 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -7,8 +7,14 @@ ARG MATE_VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Alpine 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 ****" && \ apk add --no-cache \ firefox \