mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
13 lines
295 B
Docker
13 lines
295 B
Docker
FROM debian:stable
|
|
|
|
RUN apt update && \
|
|
apt install -y build-essential cmake git libcap-dev curl python3-dev python3-setuptools libsodium-dev
|
|
|
|
WORKDIR /src/
|
|
|
|
COPY . /src/
|
|
|
|
RUN make -j 8 SHARED_LIB=ON JSONRPC=ON && make kubernetes-install
|
|
|
|
ENTRYPOINT [ "/usr/bin/python3", "-m", "pylokinet"]
|