diff --git a/Dockerfile b/Dockerfile index a0a8be0..9cf8dab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,10 +14,12 @@ ENV RUST_VERSION 1.42.0 COPY ./key_create_dunikey.py /usr/bin/key_create_dunikey COPY ./process-likes-g1tx.sh /usr/bin/process-likes-g1tx COPY ./secret2dunikey.sh /usr/bin/secret2dunikey +COPY ./find_ssb_user_G1_pubkey.sh /usr/bin/find_ssb_user_G1_pubkey +COPY ./tip.sh /usr/bin/tip RUN apt-get update -y && \ apt-get install autoconf=2.69-11.1 build-essential=12.8 python3-pip=18.1-5 python3-setuptools=44.0.0-1 python3-wheel=0.33.6-3 libsodium-dev=1.0.18-1 jq=1.6-1 make=4.2.1-1.2 git=1:2.25.1-1 gcc=4:9.2.1-3.1 base58=1.0.3-1 libtool=2.4.6-14 curl=7.68.0-1 -y && \ - chmod +x /usr/bin/secret2dunikey /usr/bin/process-likes-g1tx /usr/bin/key_create_dunikey&& \ + chmod +x /usr/bin/secret2dunikey /usr/bin/process-likes-g1tx /usr/bin/key_create_dunikey /usr/bin/find_ssb_user_G1_pubkey && \ pip3 install duniterpy==0.56.0 silkaj==0.7.6 && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \ @@ -66,6 +68,7 @@ RUN cargo build --release && \ COPY ./docker/config /home/astroport/.ssb/ COPY ./docker/run-ssb-pub.sh /home/astroport/ COPY ./docker/docker-entrypoint.sh /home/astroport/ +COPY ./samples /home/astroport/ RUN chmod +x /home/astroport/run-ssb-pub.sh /home/astroport/docker-entrypoint.sh