mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
8bb8f0e3eb
This is now the devel target, plus I think this may fix some of the ASAN issues I'm seeing; I mostly have been using f25 for local testing. Also remove the MAINTAINER line since the maintainers are defined by `git log`. Closes: #631 Approved by: jlebon
25 lines
450 B
Docker
25 lines
450 B
Docker
FROM fedora:25
|
|
|
|
RUN dnf install -y \
|
|
gcc \
|
|
sudo \
|
|
which \
|
|
attr \
|
|
fuse \
|
|
gjs \
|
|
parallel \
|
|
clang \
|
|
libubsan \
|
|
libasan \
|
|
libtsan \
|
|
gnome-desktop-testing \
|
|
redhat-rpm-config \
|
|
elfutils \
|
|
'dnf-command(builddep)' \
|
|
&& dnf builddep -y \
|
|
ostree \
|
|
&& dnf clean all
|
|
|
|
# create an unprivileged user for testing
|
|
RUN adduser testuser
|