frmscoe / General-Issues

This repo exists to track current work and any issues within the FRMS CoE
2 stars 0 forks source link

Latest tag on Jenkins deployment don't consistently deploy the latest rule #288

Closed Justus-at-Tazama closed 3 months ago

Justus-at-Tazama commented 10 months ago

Issue

Jenkins deployment with @latest uses the cached version of a processor and not the actual latest version. Attempt to recreate and investigate fix.

JeanPierreNell commented 9 months ago

Resolved issue by adding : --no-cache in the Jenkins Docker-Build Command, as it currently caches the Docker Image.

For example, on Rule 002 , before:

docker build -t LOCATION:1.0.0 .

after:

docker build -t LOCATION:1.0.0 --no-cache .