dockerfiles/siverten/oxen/Dockerfile
Sivert cdf7ef26f6
All checks were successful
continuous-integration/drone/push Build is passing
Oxen debian:latest -> debian:10
2023-02-06 13:16:46 +01:00

13 lines
329 B
Docker

FROM debian:10
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" ]