mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
91e310b7e3
Co-authored-by: Armin Wehrfritz <dkxls23@gmail.com>
8 lines
235 B
Docker
8 lines
235 B
Docker
FROM fedora:latest
|
|
|
|
RUN dnf install -y git make bash rpm-build 'dnf-command(builddep)'
|
|
ADD packaging/rpm/zrepl.spec /tmp/zrepl.spec
|
|
RUN dnf builddep -y /tmp/zrepl.spec
|
|
RUN mkdir -p /build/src && chmod -R 0777 /build
|
|
WORKDIR /build/src
|