diff --git a/containers/jug/dev.Dockerfile b/containers/jug/dev.Dockerfile
index b87c7fd0f86f24f0f3c112b549e2e89e990b1ded..bb9356d15b33a682d52a4009a62762beb1f16e44 100644
--- a/containers/jug/dev.Dockerfile
+++ b/containers/jug/dev.Dockerfile
@@ -117,7 +117,7 @@ EOF
 ## ========================================================================================
 FROM spack as builder
 
-## Setup our custom environment (secret mount for write-enabled mirror)
+## 1. Setup our default environment (secret mount for write-enabled mirror)
 COPY --from=spack-environment . /opt/spack-environment/
 ARG ENV=dev
 ENV SPACK_ENV=/opt/spack-environment/${ENV}
@@ -135,7 +135,7 @@ ccache --show-stats
 ccache --zero-stats
 EOF
 
-## Setup our custom environment with custom versions (on top of cached layer)
+## 2. Setup our environment with custom versions (on top of cached layer)
 ARG JUGGLER_VERSION=""
 ARG EICRECON_VERSION=""
 ADD https://eicweb.phy.anl.gov/api/v4/projects/EIC%2Fjuggler/repository/tree?ref=${JUGGLER_VERSION} /tmp/juggler.json
@@ -155,6 +155,7 @@ fi
 if [ -n ${EICRECON_VERSION} ] ; then
   spack rm eicrecon && spack add eicrecon@git.${EICRECON_VERSION}
 fi
+spack concretize --force --fresh
 make --jobs ${jobs} --keep-going --directory /opt/spack-environment SPACK_ENV=${SPACK_ENV} BUILDCACHE_MIRROR="local eics3rw"
 ccache --show-stats
 ccache --zero-stats