Initial commit: add .gitignore and README
This commit is contained in:
15
config/tessera/Dockerfile
Normal file
15
config/tessera/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
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"]
|
||||
|
||||
Reference in New Issue
Block a user