bm-create-enc-payload/Dockerfile

19 lines
317 B
Docker
Raw Normal View History

2023-11-02 21:16:01 +00:00
FROM node:18-bullseye
RUN apt-get update
RUN apt-get install -yq python3-pip
2022-12-23 02:55:26 +00:00
WORKDIR /app
2023-11-02 21:16:01 +00:00
RUN pip install pyzmq \
git+https://git.bitmessage.org/Bitmessage/MiNode.git@queue#egg=minode
2022-12-23 02:55:26 +00:00
COPY package.json package.json
COPY package-lock.json package-lock.json
RUN npm install
COPY . .
2023-11-02 21:16:01 +00:00
CMD ["node", "index.js"]