mirror of
https://github.com/vale981/melpazoid
synced 2025-03-04 17:01:40 -05:00
18 lines
338 B
Makefile
18 lines
338 B
Makefile
DOCKERID = emacs
|
|
PACKAGE_NAME ?= NONE
|
|
|
|
.PHONY: run
|
|
run:
|
|
python melpazoid.py
|
|
|
|
.PHONY: term
|
|
test: image
|
|
@docker run -it --rm --network none ${DOCKERID}
|
|
|
|
.PHONY: term
|
|
term: image
|
|
docker run -it --rm --entrypoint=/bin/bash ${DOCKERID}
|
|
|
|
.PHONY: image
|
|
image:
|
|
@docker build --build-arg PACKAGE_NAME --quiet --tag ${DOCKERID} -f Dockerfile .
|