Files
linea-besu/Dockerfile
PegaSys Admin 7dfc2e4085 Initial commit
Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
2018-10-09 15:17:20 +00:00

14 lines
440 B
Docker
Executable File

# Base Alpine Linux based image with OpenJDK JRE only
#FROM openjdk:8-jre-alpine
FROM openjdk:8-jdk
# copy application (with libraries inside)
ADD build/install/pantheon /opt/pantheon/
ADD integration-tests/src/test/resources/net/consensys/pantheon/tests/cluster/docker/geth/genesis.json /opt/pantheon/genesis.json
# List Exposed Ports
EXPOSE 8084 8545 30303 30303/udp
# specify default command
ENTRYPOINT ["/opt/pantheon/bin/pantheon"]