From bf84d344355f16df910575bb3236053b37355bb2 Mon Sep 17 00:00:00 2001 From: Thorsten Vitt Date: Wed, 4 Dec 2024 13:05:50 +0100 Subject: [PATCH] Switch to generic eXist. See #1 for motivation and remaining TODOs. --- Dockerfile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b2e3388..b624242 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,12 +59,15 @@ RUN a2enmod rewrite negotiation && \ ###################################### eXist db #################################################### -FROM stadlerpeter/existdb:latest AS exist -ENV EXIST_ENV=production -ENV EXIST_DEFAULT_APP_PATH=xmldb:exist:///db/apps/faust-dev -USER wegajetty -ADD --chown=wegajetty:wegajetty http://exist-db.org/exist/apps/public-repo/public/shared-resources-0.9.1.xar ${EXIST_HOME}/autodeploy/ -COPY --from=build --chown=wegajetty:wegajetty /home/gradle/faust-gen/build/faust-dev.xar ${EXIST_HOME}/autodeploy/ +FROM existdb/existdb:latest AS exist +# ARG VERSION=6.2 +# ENV EXIST_ENV=production +# ENV EXIST_DEFAULT_APP_PATH=xmldb:exist:///db/apps/faust-dev +# USER wegajetty +# ADD --chown=wegajetty:wegajetty http://exist-db.org/exist/apps/public-repo/public/shared-resources-0.9.1.xar ${EXIST_HOME}/autodeploy/ +# COPY --from=build --chown=wegajetty:wegajetty /home/gradle/faust-gen/build/faust-dev.xar ${EXIST_HOME}/autodeploy/ +ADD http://exist-db.org/exist/apps/public-repo/public/shared-resources-0.9.1.xar /exist/autodeploy/ +COPY --from=build /home/gradle/faust-gen/build/faust-dev.xar /exist/autodeploy/ ####################################### Macrogenesis server ########################################