Bug 1692971 [wpt PR 27638] - WebKit export of https://bugs.webkit.org/show_bug.cgi...
[gecko.git] / taskcluster / docker / firefox-flatpak / Dockerfile
blob5492cd8d51b061d1aa5062f93dc3cd8c1b7eb8b4
1 FROM freedesktopsdk/flatpak:20.08-x86_64
2 MAINTAINER release@mozilla.com
4 RUN mkdir /scripts/
5 WORKDIR /scripts/
6 # Copy everything in the docker/firefox-flatpak folder but the Dockerfile
8 # XXX The following pattern is neither a regex nor a glob one. It's
9 # documented at https://golang.org/pkg/path/filepath/#Match. There's no
10 # way of explicitly filtering out "Dockerfile". If one day, someone needs
11 # to add a file starting with "D", then we must revisit the pattern below.
12 COPY [^D]* /scripts/
14 # Set a default command useful for debugging
15 CMD ["/bin/bash", "--login"]