From 6086899b282fb7211ddaee970457793689c9498c Mon Sep 17 00:00:00 2001 From: mcnesium Date: Tue, 17 Oct 2023 09:10:46 +0200 Subject: [PATCH] When building the docker image, make sure to pull the latest base image. Fixes #2131 #2132 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a4f4536..3f9cb661 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ clean-integration-test: @ psql -U postgres -c 'drop database if exists miniflux_test;' docker-image: - docker build -t $(DOCKER_IMAGE):$(VERSION) -f packaging/docker/alpine/Dockerfile . + docker build --pull -t $(DOCKER_IMAGE):$(VERSION) -f packaging/docker/alpine/Dockerfile . docker-image-distroless: docker build -t $(DOCKER_IMAGE):$(VERSION) -f packaging/docker/distroless/Dockerfile .