mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
11 lines
170 B
Docker
11 lines
170 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && \
|
||
|
apt install -y build-essential cmake git libcap-dev wget rapidjson-dev
|
||
|
|
||
|
WORKDIR /src/
|
||
|
|
||
|
COPY . /src/
|
||
|
|
||
|
RUN make -j 8 JSONRPC=ON
|