mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
11 lines
175 B
Docker
11 lines
175 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && \
|
|
apt install -y build-essential cmake git libcap-dev curl ninja-build
|
|
|
|
WORKDIR /src/
|
|
|
|
COPY . /src/
|
|
|
|
RUN make NINJA=ninja JSONRPC=ON
|