mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
14 lines
440 B
Docker
Executable File
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"]
|