mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
14 lines
260 B
Docker
14 lines
260 B
Docker
FROM node:12.18.3-buster-slim
|
|
|
|
WORKDIR /text_client
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY text-client.js ./
|
|
|
|
ENTRYPOINT ["node", "text-client.js"]
|
|
|
|
# Comment this for localhost connection.
|
|
# Client connects to node1 of the cluster.
|
|
CMD ["node1", "8081"] |