mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
11 lines
170 B
Docker
11 lines
170 B
Docker
|
FROM debian: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
|