mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +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
|