mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-23 18:43:21 +00:00
Merge pull request #724 from overleaf/csh-issue-2578-server-pro-cloud-build
Use variables for Makefile tagging
This commit is contained in:
commit
932b7d2a74
1 changed files with 4 additions and 2 deletions
|
@ -1,12 +1,14 @@
|
|||
# Makefile
|
||||
|
||||
SHARELATEX_BASE_TAG := sharelatex/sharelatex-base
|
||||
SHARELATEX_TAG := sharelatex/sharelatex
|
||||
|
||||
build-base:
|
||||
docker build -f Dockerfile-base -t sharelatex/sharelatex-base .
|
||||
docker build -f Dockerfile-base -t $(SHARELATEX_BASE_TAG) .
|
||||
|
||||
|
||||
build-community:
|
||||
docker build -f Dockerfile -t sharelatex/sharelatex .
|
||||
docker build -f Dockerfile -t $(SHARELATEX_TAG) .
|
||||
|
||||
|
||||
PHONY: build-base build-community
|
||||
|
|
Loading…
Reference in a new issue