Files
quorum-test-network/config/tessera/Dockerfile
2026-02-09 21:51:48 -08:00

16 lines
531 B
Docker

ARG TESSERA_VERSION=latest
FROM quorumengineering/tessera:${TESSERA_VERSION}
# develop uses a debain container, all releases use an alpine container - this allows both to be used for the quickstart
# set the version in ../../.env
RUN if [ -e /sbin/apk ] ; then apk add gettext --no-cache ; else apt-get update && apt-get install -y gettext && rm -rf /var/lib/apt/lists/* ; fi
ENV JAVA_OPTS="-Dlogback.configurationFile=/data/logback.xml"
COPY docker-entrypoint.sh /usr/bin/
COPY data data
ENTRYPOINT ["docker-entrypoint.sh"]