mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
12 lines
454 B
Docker
12 lines
454 B
Docker
# We are going with Hot Pocket NodeJs docker image because sample contracts need NodeJs to run.
|
|
FROM evernodedev/hotpocket:latest-ubt.20.04-njs.16
|
|
|
|
# Copy (overwrite) the local build outputs into the docker image.
|
|
COPY hpcore hpfs hpws /usr/local/bin/hotpocket/
|
|
|
|
ENTRYPOINT ["/usr/local/bin/hotpocket/hpcore"]
|
|
|
|
# Run with valgrind
|
|
|
|
# RUN apt-get install --no-install-recommends -y gdb valgrind
|
|
# ENTRYPOINT ["valgrind", "/usr/local/bin/hotpocket/hpcore"] |