bm-create-enc-payload/Dockerfile
Lee Miller b9ba97fb91
All checks were successful
buildbot/travis_bionic Build done.
buildbot/multibuild_parent Build done.
Sending a message via minode
2023-11-02 23:16:01 +02:00

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"]