Patching Jira in the Docker environment

This applies to JFS v1.4 only.

This Dockerfile can be used to build a Jira image with JFS patch applied using the official Atlassian images:

ARG JIRA_VERSION FROM atlassian/jira-software:${JIRA_VERSION} ARG JIRA_VERSION ARG PATCH_VERSION=1.3.0 ARG PATCH_NAME=jfs-patch-${PATCH_VERSION}-${JIRA_VERSION}-patch.zip ARG PATCH_URL=https://dev.quisapps.com/artifactory/public/com/quisapps/jira/jfs-patch/${PATCH_VERSION}-${JIRA_VERSION}/${PATCH_NAME} RUN cd /opt/atlassian/jira/atlassian-jira/ && curl -s ${PATCH_URL} | jar xv