From e9e39b528be420c2564e31cf8d02c4384ca74ed8 Mon Sep 17 00:00:00 2001 From: EpicOfficer <9379778+EpicOfficer@users.noreply.github.com> Date: Thu, 6 Jun 2024 19:06:14 +0100 Subject: [PATCH] ProtonPass is borked for now --- Containerfile | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Containerfile b/Containerfile index 91d56f6..c0b0d8f 100644 --- a/Containerfile +++ b/Containerfile @@ -2,10 +2,13 @@ FROM ghcr.io/ublue-os/bazzite:stable AS quantix COPY system_files/shared / -# Install new packages +# Proton RUN curl -o /tmp/ProtonMail-desktop-beta.rpm https://proton.me/download/mail/linux/ProtonMail-desktop-beta.rpm && \ - curl -o /tmp/ProtonPass.rpm https://proton.me/download/PassDesktop/linux/x64/ProtonPass.rpm && \ - rpm-ostree install \ + rpm-ostree install /tmp/ProtonMail-desktop-beta.rpm && \ + ostree container commit + +# Install new packages +RUN rpm-ostree install \ adobe-source-code-pro-fonts \ cascadia-code-fonts \ jetbrains-mono-fonts-all \ @@ -40,10 +43,11 @@ RUN curl -o /tmp/ProtonMail-desktop-beta.rpm https://proton.me/download/mail/lin glib2-devel \ pixman-devel \ spice-protocol \ - spice-server-devel \ - /tmp/ProtonMail-desktop-beta.rpm && \ - /tmp/ProtonPass.rpm && \ - systemctl unmask quantix-flatpak-manager.service && \ + spice-server-devel && \ + ostree container commit + +# Finalise +RUN systemctl unmask quantix-flatpak-manager.service && \ systemctl enable quantix-flatpak-manager.service && \ systemctl enable quantix-system-setup.service && \ systemctl enable docker.socket && \