summaryrefslogtreecommitdiff
path: root/contrib/wallet-docker/Dockerfile
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2020-11-25 16:30:31 +0100
committerFlorian Dold <florian@dold.me>2020-11-25 16:30:31 +0100
commitfcfe7e63701c03c69ec28835bd24699b270502b1 (patch)
tree0755ae52c01f78df0b205385e0c9a9d117525c24 /contrib/wallet-docker/Dockerfile
parent68dcb13fbfcf569c03170444818b5c40f2d13233 (diff)
downloadwallet-core-fcfe7e63701c03c69ec28835bd24699b270502b1.tar.gz
wallet-core-fcfe7e63701c03c69ec28835bd24699b270502b1.tar.bz2
wallet-core-fcfe7e63701c03c69ec28835bd24699b270502b1.zip
docker-based build instructions
Diffstat (limited to 'contrib/wallet-docker/Dockerfile')
-rw-r--r--contrib/wallet-docker/Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/wallet-docker/Dockerfile b/contrib/wallet-docker/Dockerfile
new file mode 100644
index 000000000..d1a04d32c
--- /dev/null
+++ b/contrib/wallet-docker/Dockerfile
@@ -0,0 +1,9 @@
+FROM debian:bullseye AS walletbuild
+
+# Install dependencies
+RUN apt-get update
+RUN apt-get -y upgrade
+RUN apt-get -y install build-essential zip jq python3 python3-pip nodejs npm
+RUN npm install -g pnpm
+
+COPY gitbuild.sh /bin