mirror of
https://github.com/ostreedev/ostree.git
synced 2025-03-15 06:50:31 +03:00
This allows us to more concisely separate building from testing, which in turn gives us a nicer inheritance pattern in our case. See also: https://github.com/jlebon/redhat-ci/issues/11 Closes: #569 Approved by: cgwalters
24 lines
460 B
Docker
24 lines
460 B
Docker
FROM fedora:24
|
|
MAINTAINER Jonathan Lebon <jlebon@redhat.com>
|
|
|
|
RUN dnf install -y \
|
|
gcc \
|
|
sudo \
|
|
which \
|
|
attr \
|
|
fuse \
|
|
gjs \
|
|
parallel \
|
|
clang \
|
|
libubsan \
|
|
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
|