My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use --no-cache for Docker base image builds

Docker was caching layers from previous builds, so Dockerfile
changes (like adding the repo merge step) weren't taking effect.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
day11/build/base.ml
··· 160 160 Log.info (fun m -> m "Running docker build (tag: %s)" tag); 161 161 let build_run = 162 162 Day11_exec.Run.run env 163 - Bos.Cmd.(v "docker" % "build" % "--network=host" 163 + Bos.Cmd.(v "docker" % "build" % "--network=host" % "--no-cache" 164 164 % "-t" % tag % Fpath.to_string temp_dir) 165 165 (Some build_log) 166 166 in