mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
8 lines
344 B
Docker
8 lines
344 B
Docker
# We are going with NodeJs debian docker image because sample contracts need NodeJs to run.
|
|
# Otherwise, hpcore itself can run on any docker image like ubuntu or debian without NodeJs.
|
|
FROM node:10.17.0-buster-slim
|
|
|
|
# hpcore binary is copied to /hp directory withtin the docker image.
|
|
WORKDIR /hp
|
|
COPY ./build/hpcore .
|
|
ENTRYPOINT ["/hp/hpcore"] |