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