Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile « flatpak - gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b1f5ccbc5314b00ede14fd5057b1b06f51216fd (plain)
1
2
3
4
5
6
7
8
9
FROM fedora:latest
RUN dnf install -yq flatpak flatpak-builder fuse git
RUN mkdir -m1777 -p /tmp
RUN useradd -U -m remmina
USER remmina
WORKDIR /home/remmina
COPY --chown=remmina:remmina . .
RUN flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
CMD ["/bin/sh", "-xe", "./flatpak/flatpak-build.sh"]