Skip to content

Commit

Permalink
Merge pull request os-migrate#304 from jistr/f/image-rebuild
Browse files Browse the repository at this point in the history
Dev: Do not use cache when building toolbox image
  • Loading branch information
ccamacho authored Nov 20, 2020
2 parents 22d3c83 + 082ba0b commit 5a3d752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ toolbox-build:
if [ "$${REUSE_TOOLBOX:-0}" -eq "0" ]; then \
echo "Building the toolbox container image"; \
cd toolbox && \
podman build --format docker --build-arg NO_VAGRANT=$(NO_VAGRANT) -t localhost/os_migrate_toolbox:latest . && \
podman build --no-cache --format docker --build-arg NO_VAGRANT=$(NO_VAGRANT) -t localhost/os_migrate_toolbox:latest . && \
podman tag localhost/os_migrate_toolbox:latest localhost/os_migrate_toolbox:$$(date "+%Y_%m_%d"); \
else \
echo "Reusing the toolbox container image"; \
Expand Down

0 comments on commit 5a3d752

Please sign in to comment.