Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade to kde platform 6.8 in flatpak. #224

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions qtox/docker/Dockerfile.flatpak-builder
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# SPDX-License-Identifier: GPL-3.0-or-later.
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 2021 by The qTox Project Contributors
# Copyright © 2024 The TokTok team
# Copyright © 2024-2025 The TokTok team

FROM debian:bookworm
FROM debian:trixie

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update \
&& apt-get -y --force-yes --no-install-recommends install \
appstream-compose \
ca-certificates \
ccache \
curl \
Expand All @@ -23,8 +22,8 @@ RUN apt-get update \

# Pre-download kde flatpak environment to speed up flatpak builds
RUN flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo \
&& flatpak --system install -y --noninteractive flathub org.kde.Platform/x86_64/6.7 \
&& flatpak --system install -y --noninteractive flathub org.kde.Sdk/x86_64/6.7
&& flatpak --system install -y --noninteractive flathub org.kde.Platform/x86_64/6.8 \
&& flatpak --system install -y --noninteractive flathub org.kde.Sdk/x86_64/6.8

WORKDIR /qtox
ENV HOME=/qtox
Loading