mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-22 17:36:25 +04:00
9 lines
219 B
Makefile
9 lines
219 B
Makefile
|
DOCKER_NAME ?= dinghao188/rcore-tutorial
|
||
|
.PHONY: docker build_docker
|
||
|
|
||
|
docker:
|
||
|
docker run --rm -it --mount type=bind,source=$(shell pwd),destination=/mnt ${DOCKER_NAME}
|
||
|
|
||
|
build_docker:
|
||
|
docker build -t ${DOCKER_NAME} .
|