Skip to content

Instantly share code, notes, and snippets.

@ImanMousavi
Created November 25, 2020 09:22
Show Gist options
  • Save ImanMousavi/fb7333ddfc9a5cca7e4220716cb2297c to your computer and use it in GitHub Desktop.
Save ImanMousavi/fb7333ddfc9a5cca7e4220716cb2297c to your computer and use it in GitHub Desktop.
FROM adoptopenjdk:8-jre-hotspot
WORKDIR /home/wallet-cli
RUN set -o errexit -o nounset \
&& apt-get update \
&& apt-get -y install wget \
&& wget https://github.com/tronprotocol/wallet-cli/releases/download/wallet-cli-4.1.0/wallet-cli.jar
ENTRYPOINT ["java", "-jar", "wallet-cli.jar"]
EXPOSE 18889
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment