From 51a068b70799e337bc6d3a2bb24efc8a503b788e Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Tue, 18 Apr 2023 09:24:07 +0100 Subject: [PATCH] Merge pull request #12603 from overleaf/ae-make-all Add "all" target to server-ce Makefile GitOrigin-RevId: 9ca8fac603e28793490cc9b8dc3f86b96719e520 --- server-ce/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server-ce/Makefile b/server-ce/Makefile index 938381da00..027e88dced 100644 --- a/server-ce/Makefile +++ b/server-ce/Makefile @@ -6,6 +6,8 @@ export SHARELATEX_BASE_CACHE := $(shell echo $(SHARELATEX_BASE_TAG) | sed -E 's/ export MONOREPO_REVISION := $(shell git rev-parse HEAD) MONOREPO_ROOT := ../ +all: build-base build-community + build-base: cp .dockerignore $(MONOREPO_ROOT) docker pull $(SHARELATEX_BASE_CACHE) || echo "nothing cached yet" @@ -17,4 +19,4 @@ build-community: docker build --build-arg SHARELATEX_BASE_TAG --build-arg MONOREPO_REVISION -f Dockerfile -t $(SHARELATEX_TAG) $(MONOREPO_ROOT) -.PHONY: build-base build-community +.PHONY: all build-base build-community