mirror of
https://github.com/DominicBreuker/pspy.git
synced 2025-12-21 19:54:53 +00:00
9 lines
258 B
Makefile
9 lines
258 B
Makefile
DEV_IMAGE = local/pspy-dev:latest
|
|
PROJECT_DIR = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
build-dev:
|
|
docker build -f docker/Dockerfile -t $(DEV_IMAGE) .
|
|
|
|
dev:
|
|
docker run -it --rm -v $(PROJECT_DIR):/go/src/github.com/dominicbreuker/pspy $(DEV_IMAGE)
|