mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-27 20:05:10 +00:00
The version of boost in Fedora 29 has a use-after-free bug that is only exposed when ./test.py is run with the --jenkins flag. To patch it, use a fixed version from the copr repository scylladb/toolchain. Message-Id: <20181228150419.29623-1-avi@scylladb.com>
7 lines
248 B
Docker
7 lines
248 B
Docker
FROM fedora:29
|
|
ADD ./install-dependencies.sh ./
|
|
ADD ./seastar/install-dependencies.sh ./seastar/
|
|
RUN dnf -y install 'dnf-command(copr)' \
|
|
&& dnf -y copr enable scylladb/toolchain \
|
|
&& /bin/bash -x ./install-dependencies.sh && dnf -y update
|