mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
14 lines
283 B
Makefile
14 lines
283 B
Makefile
# Makefile
|
|
|
|
SHARELATEX_BASE_TAG := sharelatex/sharelatex-base
|
|
SHARELATEX_TAG := sharelatex/sharelatex
|
|
|
|
build-base:
|
|
docker build -f Dockerfile-base -t $(SHARELATEX_BASE_TAG) .
|
|
|
|
|
|
build-community:
|
|
docker build -f Dockerfile -t $(SHARELATEX_TAG) .
|
|
|
|
|
|
PHONY: build-base build-community
|