Initial commit

This commit is contained in:
idk
2021-07-19 18:39:02 -04:00
commit 05c90bc9cc
2 changed files with 15 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
MONERO_GUI_DIR_FULL_PATH=$(PWD)/monero-gui
BRANCH=master
all: monero-container monero-cmd
monero:
git clone --branch $(BRANCH) --recursive https://github.com/monero-project/monero-gui.git; true
monero-container: monero
cd monero-gui && \
docker build --tag monero:build-env-linux --build-arg THREADS=4 --file Dockerfile.linux .
monero-cmd:
docker run --rm -it -v $(MONERO_GUI_DIR_FULL_PATH):/monero-gui -w /monero-gui monero:build-env-linux sh -c 'make release-static -j4'