bm-create-enc-payload/Dockerfile

19 lines
317 B
Docker

FROM node:18-bullseye
RUN apt-get update
RUN apt-get install -yq python3-pip
WORKDIR /app
RUN pip install pyzmq \
git+https://git.bitmessage.org/Bitmessage/MiNode.git@queue#egg=minode
COPY package.json package.json
COPY package-lock.json package-lock.json
RUN npm install
COPY . .
CMD ["node", "index.js"]