From 0d919666092be6fb49cba89ffa566ee50454e0c2 Mon Sep 17 00:00:00 2001 From: Owen Schwartz Date: Sat, 28 Sep 2024 18:18:06 -0400 Subject: [PATCH] Extend makefile --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5c005e32..2399d018 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ +all: + docker build -t pangolin . + test: - docker run -it -p 3000:3000 -p 3001:3001 --env-file=.env-docker -v ./config:/config pangolin \ No newline at end of file + docker run -it -p 3000:3000 -p 3001:3001 --env-file=.env-docker -v ./config:/config pangolin + +clean: + docker rmi pangolin \ No newline at end of file