2024-09-28 18:17:37 -04:00
|
|
|
|
2024-10-20 12:55:28 -04:00
|
|
|
all: build push
|
|
|
|
|
2024-10-27 23:36:04 -04:00
|
|
|
build-arm:
|
|
|
|
docker buildx build --platform linux/arm64 -t fossorial/pangolin:latest .
|
|
|
|
|
|
|
|
build-x86:
|
2024-12-01 19:45:36 -05:00
|
|
|
docker buildx build --platform linux/amd64 -t fossorial/pangolin:latest .
|
|
|
|
|
|
|
|
build:
|
|
|
|
docker build -t fossorial/pangolin:latest .
|
2024-10-20 12:55:28 -04:00
|
|
|
|
|
|
|
push:
|
|
|
|
docker push fossorial/pangolin:latest
|
2024-09-28 18:18:06 -04:00
|
|
|
|
2024-09-28 18:17:37 -04:00
|
|
|
test:
|
2024-10-26 23:37:25 -04:00
|
|
|
docker run -it -p 3000:3000 -p 3001:3001 -v ./config:/app/config fossorial/pangolin:latest
|
2024-09-28 18:18:06 -04:00
|
|
|
|
|
|
|
clean:
|
2024-10-06 11:13:50 -04:00
|
|
|
docker rmi pangolin
|