mirror of
https://github.com/RetroDECK/retrodeck-builder.git
synced 2024-11-22 06:05:39 +00:00
20 lines
587 B
Docker
20 lines
587 B
Docker
|
# Use Fedora as the base image
|
||
|
FROM fedora:latest
|
||
|
|
||
|
# 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)
|
||
|
CMD [ "flatpak builder" ]
|