Makefile 200 B

123456789101112
  1. # Makefile
  2. build-base:
  3. docker build -f Dockerfile-base -t sharelatex/sharelatex-base .
  4. build-community:
  5. docker build -f Dockerfile -t sharelatex/sharelatex .
  6. PHONY: build-base build-community