You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Create a random password if the user doesn't set one
ENV RANDOM_PASS `pwgen -Bs1 12`
ENV RPC_PASSWORD ${RPC_PASSWORD:-$RANDOM_PASS}
# Build the project
RUN wget https://github.com/monetaryunitproject/MonetaryUnit/releases/download/v1.2.0.0/monetaryunit-1.1.0-x86_64-linux-gnu.tar.gz -O monetaryunit-1.1.0.tar.gz
RUN tar -xvf monetaryunit-1.1.0.tar.gz
RUN mkdir -p /root/.monetaryunit/
RUN echo "rpcuser=$RPC_USER\nrpcpassword=$RPC_PASSWORD" > /root/.monetaryunit/monetaryunit.conf