Last active
January 15, 2022 13:34
-
-
Save Andrea-Scuderi/18c5bc8a8b3953b58706257542e4d036 to your computer and use it in GitHub Desktop.
Makefile.emerge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MOUNT_ROOT=$(shell pwd) | |
DOCKER_TAG=emerge:1.0.0 | |
docker_build: | |
docker build --tag $(DOCKER_TAG) . | |
docker_bash: | |
docker run \ | |
-it \ | |
--rm \ | |
--volume "$(MOUNT_ROOT):/src" \ | |
--workdir "/src/" \ | |
$(DOCKER_TAG) \ | |
/bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment