mirror of
https://github.com/RetroDECK/retrodeck-builder.git
synced 2024-11-21 13:45:38 +00:00
20 lines
673 B
Docker
20 lines
673 B
Docker
# Use Fedora as the base image
|
|
FROM fedora:41
|
|
|
|
# Install the required packages
|
|
RUN dnf install -y \
|
|
flatpak \
|
|
flatpak-builder \
|
|
p7zip \
|
|
xmlstarlet \
|
|
bzip2 \
|
|
curl \
|
|
jq && \
|
|
dnf clean all
|
|
|
|
# Add flathub and flathub-beta remotes for flatpak
|
|
RUN flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo && \
|
|
flatpak remote-add --user --if-not-exists flathub-beta https://flathub.org/beta-repo/flathub-beta.flatpakrepo
|
|
|
|
# Set default command (optional, for testing purposes)
|
|
ENTRYPOINT [ "flatpak-builder", "--no-sandbox", "--install-deps-from=flathub", "--install-deps-from=flathub-beta" ] |