summaryrefslogtreecommitdiff
path: root/contrib/wallet-docker/Dockerfile
diff options
context:
space:
mode:
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