22 lines
518 B
Docker
22 lines
518 B
Docker
FROM ubuntu:22.04
|
|
MAINTAINER Rene V. Vergara A. <rvergara59@kprotonmail.com>
|
|
|
|
RUN apt update
|
|
|
|
RUN apt -y install libxss-dev
|
|
RUN apt -y install libxrandr-dev
|
|
RUN apt -y install libsecp256k1-dev
|
|
RUN apt -y install xclip
|
|
|
|
RUN mkdir /home/zenith
|
|
RUN useradd -ms /bin/bash zenusr
|
|
|
|
COPY bash_rc_adm /root/.bashrc
|
|
COPY bash_rc_usr /home/zenusr/.bashrc
|
|
COPY zenith /usr/local/bin
|
|
COPY librustzcash_wrapper.so /usr/local/lib
|
|
COPY sapling-spend.params /usr/local/lib
|
|
COPY sapling-output.params /usr/local/lib
|
|
|
|
CMD ["/bin/bash"]
|