dockerfiles/siverten/oxen/Dockerfile

14 lines
349 B
Docker
Raw Normal View History

#FROM debian:10
FROM debian:latest
2021-09-14 12:59:53 +00:00
RUN apt update
RUN apt install -y curl
RUN curl -so /etc/apt/trusted.gpg.d/oxen.gpg https://deb.oxen.io/pub.gpg
RUN echo "deb https://deb.oxen.io buster main" | tee /etc/apt/sources.list.d/oxen.list
RUN apt update -y && apt upgrade -y
RUN apt install -y oxen-service-node
CMD [ "oxend", "--non-interactive" ]