Add wallet tracker

This commit is contained in:
Patrick Balsiger
2024-01-28 12:17:53 +01:00
parent fda9701e35
commit 6afd518f58
7 changed files with 1319 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM node:18
WORKDIR /app
COPY package.json ./
RUN npm install
COPY src src
CMD ["npm", "start"]