mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-09 01:18:35 +03:00
b74e4e79cc
To prevent repeats of https://github.com/ostreedev/ostree/pull/693 I tested this script in https://github.com/cgwalters/playground/pull/48 Closes: #770 Approved by: jlebon
28 lines
502 B
Docker
28 lines
502 B
Docker
FROM fedora:25
|
|
|
|
RUN dnf install -y \
|
|
gcc \
|
|
git \
|
|
sudo \
|
|
which \
|
|
attr \
|
|
fuse \
|
|
gjs \
|
|
parallel \
|
|
coccinelle \
|
|
clang \
|
|
libubsan \
|
|
libasan \
|
|
libtsan \
|
|
PyYAML \
|
|
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
|