mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
01445399f0
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
12 lines
201 B
Docker
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
|