init maven subsystem in docker
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing

This commit is contained in:
damage 2024-12-23 15:44:45 +01:00
parent 3edcc4e09d
commit bb419be5f4

View File

@ -9,6 +9,11 @@ COPY target/mavor.war /usr/local/tomcat/webapps/ROOT.war
# create temporary directory, no need to be a volume
RUN mkdir /mavor
# this mvn command fails but is intended to fail
# it just initializes maven subsystem so the first
# download on the website is faster
RUN /usr/bin/mvn dependency:copy-dependencies || echo "maven init done. fail is intended"
# set required ENV
ENV MAVOR_MAVEN_EXECUTABLE="/usr/bin/mvn"
ENV MAVOR_TEMP_DIR="/mavor"