mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
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
|