mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
13 lines
224 B
Docker
13 lines
224 B
Docker
FROM openjdk:8u151-jre-alpine
|
|
|
|
COPY corda.jar /app/corda.jar
|
|
COPY plugins /app/plugins/
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
|
COPY node.conf /app/node.conf
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 10001 10002
|
|
|
|
CMD ["/bin/sh", "entrypoint.sh"]
|