diff options
author | Julien Dessaux | 2024-09-20 22:53:48 +0200 |
---|---|---|
committer | Julien Dessaux | 2025-02-09 10:09:22 +0100 |
commit | de7ba3439bb0721f5395a6b97f22a1b68eea6ea8 (patch) | |
tree | cedfcecbccbc52a00e17de1bfda60b517050d543 /GNUmakefile | |
parent | chore(tooling): add a Dockerfile along with some makefile container targets (diff) | |
download | ods-de7ba3439bb0721f5395a6b97f22a1b68eea6ea8.tar.gz ods-de7ba3439bb0721f5395a6b97f22a1b68eea6ea8.tar.bz2 ods-de7ba3439bb0721f5395a6b97f22a1b68eea6ea8.zip |
chore(tooling): Fix container build layers caching
Diffstat (limited to '')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7b7c475..1fd42c1 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -52,7 +52,9 @@ run: ## run the code ##### Containers ############################################################### .PHONY: container-build container-build: ## build the container image + printf "Dockerfile GNUmakefile go.mod go.sum index.html main.go ods.txt" | xargs shasum >checksums podman build \ + -v $$PWD:/usr/src/app \ -t $(CONTAINER_REGISTRY)/ods:$(CONTAINER_TAG) \ . |