diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6f7eeaf --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: spark pyspark + +spark: Dockerfile.spark + docker build -t comp101/spark:latest -f $< . + +pyspark: Dockerfile.pyspark + docker build -t comp101/pyspark:latest -f $< .