Skip to content

Commit

Permalink
Add workaround for gdcc#177 and IQSS/dataverse#6656 to dataverse-k8s …
Browse files Browse the repository at this point in the history
…image and Kubernetes deployment. Will be removed when gdcc#178 gets solved.
  • Loading branch information
poikilotherm authored and T-Haeussermann committed Nov 16, 2023
1 parent 4d54585 commit 4606139
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/dataverse-k8s/glassfish/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,11 @@ RUN wget --no-verbose -O weld-osgi-bundle.jar ${WELD_PKG} && \
cp /etc/pki/ca-trust/extracted/java/cacerts ${GLASSFISH_DIR}/glassfish/domains/domain1/config/cacerts.jks

# Make docroot of Glassfish reside in higher level directory for easier targeting
# Due to IQSS/dataverse-kubernetes#177: create the generated pathes so they are
# writeable by us. TBR with #178.
RUN rm -rf ${DOMAIN_DIR}/docroot && \
ln -s ${DOCROOT_DIR} ${DOMAIN_DIR}/docroot
ln -s ${DOCROOT_DIR} ${DOMAIN_DIR}/docroot && \
mkdir -p ${DOMAIN_DIR}/generated/jsp/dataverse

# Tune basic settings
# 1) Set to use Server VM
Expand Down

0 comments on commit 4606139

Please sign in to comment.