mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
[perf] use docker layer caching from previous build
This commit is contained in:
parent
05885efe93
commit
984eb3bf2d
1 changed files with 3 additions and 1 deletions
|
@ -2,9 +2,11 @@
|
|||
|
||||
SHARELATEX_BASE_TAG := sharelatex/sharelatex-base
|
||||
SHARELATEX_TAG := sharelatex/sharelatex
|
||||
SHARELATEX_BASE_CACHE := $(shell echo $(SHARELATEX_BASE_TAG) | sed -E 's/(.+):.+/\1:latest/')
|
||||
|
||||
build-base:
|
||||
docker build -f Dockerfile-base -t $(SHARELATEX_BASE_TAG) .
|
||||
docker pull $(SHARELATEX_BASE_CACHE)
|
||||
docker build -f Dockerfile-base --pull --cache-from $(SHARELATEX_BASE_CACHE) -t $(SHARELATEX_BASE_TAG) .
|
||||
|
||||
|
||||
build-community:
|
||||
|
|
Loading…
Reference in a new issue