Created
September 13, 2016 12:27
-
-
Save Wicowyn/411e5a2c760dc87074d22b1e5ae9a411 to your computer and use it in GitHub Desktop.
monero node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
MAINTAINER Nicolas Barranger <[email protected]> | |
USER root | |
RUN mkdir /monero && cd /monero && mkdir data | |
RUN apt update && apt install -y wget ca-certificates openssl bzip2 | |
WORKDIR /monero | |
RUN wget -O monero.tar.bz2 https://downloads.getmonero.org/linux64 | |
RUN tar -xjf monero.tar.bz2 -C . ./bitmonerod | |
RUN rm monero.tar.bz2 | |
VOLUME /monero/data | |
EXPOSE 18080 | |
EXPOSE 18081 | |
ENTRYPOINT /monero/bitmonerod --data-dir /monero/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment