mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-04 10:05:53 +02:00
14 lines
243 B
Makefile
14 lines
243 B
Makefile
|
|
all: build push
|
|
|
|
build:
|
|
docker build -t fossorial/pangolin:latest .
|
|
|
|
push:
|
|
docker push fossorial/pangolin:latest
|
|
|
|
test:
|
|
docker run -it -p 3000:3000 -p 3001:3001 --env-file=.env -v ./config:/app/config pangolin
|
|
|
|
clean:
|
|
docker rmi pangolin
|