Skip to content

Commit 2d86e6c

Browse files
author
Matthew Fisher
committed
fix(Makefile): ensure to use "latest" build of cedar:14
Heroku constantly updates the heroku/cedar:14 image as security patches are applied. This change enforces us to pull down the latest version of the image before building the image.
1 parent 166bddd commit 2d86e6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ bootstrap:
2121
@echo Nothing to do.
2222

2323
docker-build:
24-
docker build --rm -t ${IMAGE} rootfs
24+
docker build --pull --rm -t ${IMAGE} rootfs
2525
docker tag ${IMAGE} ${MUTABLE_IMAGE}
2626

2727
deploy: docker-build docker-push kube-pod

0 commit comments

Comments
 (0)