diff --git a/ubuntu-mate/Dockerfile b/ubuntu-mate/Dockerfile index 5480c74..0aaa076 100644 --- a/ubuntu-mate/Dockerfile +++ b/ubuntu-mate/Dockerfile @@ -15,6 +15,7 @@ ARG KUBECTX_VERSION=0.9.5 LABEL build_version="based on Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="Michael Trip" WORKDIR /tmp +COPY /root / # USER root # Download all packages and install everything in one layer RUN set -eux; \ @@ -42,6 +43,7 @@ RUN set -eux; \ cp /tmp/packages.microsoft.gpg /etc/apt/keyrings/; \ echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list; \ add-apt-repository ppa:xtradeb/apps -y; \ + add-apt-repository ppa:mozillateam/ppa -y; \ echo "**** Apt update and install packages ****"; \ DEBIAN_FRONTEND=noninteractive apt-get update; \ mkdir -p /usr/share/man/man1; \ @@ -62,9 +64,6 @@ RUN set -eux; \ apt-get --yes autoremove; apt-get -y autoclean; \ rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/* - -COPY /root / - # ports and volumes EXPOSE 3389 VOLUME /home diff --git a/ubuntu-mate/root/etc/apt/preferences.d/thunderbird b/ubuntu-mate/root/etc/apt/preferences.d/thunderbird new file mode 100644 index 0000000..f9c7be9 --- /dev/null +++ b/ubuntu-mate/root/etc/apt/preferences.d/thunderbird @@ -0,0 +1,7 @@ +Package: * +Pin: release o=LP-PPA-mozillateam +Pin-Priority: 1001 + +Package: thunderbird +Pin: version 2:1snap* +Pin-Priority: -1 \ No newline at end of file