lokinet/docker/fedora.Dockerfile
Michael Thorpe 01445399f0
Add initial dockerfile support
This provides a simple way to do quick cross-platform verification
of changes.

`make docker-debian` will build a debian image and run the tests
`make docker-fedora` will build a fedora image and run the tests
2018-11-02 18:06:01 -04:00

12 lines
201 B
Docker

FROM fedora:latest
RUN dnf update -y && \
dnf upgrade -y && \
dnf install -y cmake make git gcc gcc-c++ libcap-devel wget rapidjson-devel
WORKDIR /src/
COPY . /src/
RUN make -j8 JSONRPC=ON