dockerfiles/siverten/oxen/Dockerfile
Sivert V. Sæther 8c3769180d Add changes I've made manually on the build server
This also adds the xmr-stak cypto miner container image I created
That one is the first of potentially many images I won't push to the official Docker Hub registries, but insted to my own private registry
2022-06-19 16:21:23 +02:00

14 lines
349 B
Docker

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