diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | docker/Dockerfile (renamed from build/Dockerfile) | 0 | ||||
-rw-r--r-- | docker/entry.sh (renamed from build/entry.sh) | 0 | ||||
-rw-r--r-- | docker/requirements.txt | 4 |
4 files changed, 7 insertions, 3 deletions
@@ -8,9 +8,9 @@ help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' build: ## Build the Docker image - cp -r requirements.txt ./build - cp -r config.json ./build - docker build -t $(IMAGENAME) ./build + cp -r requirements.txt ./docker + cp -r config.json ./docker + docker build -t $(IMAGENAME) ./docker up: build ## Bring the Docker container up docker run -td -v $(PWD):/opt --name $(CONTAINERNAME) $(IMAGENAME) || echo 'Already up!' diff --git a/build/Dockerfile b/docker/Dockerfile index e31cb36..e31cb36 100644 --- a/build/Dockerfile +++ b/docker/Dockerfile diff --git a/build/entry.sh b/docker/entry.sh index 09a943f..09a943f 100644 --- a/build/entry.sh +++ b/docker/entry.sh diff --git a/docker/requirements.txt b/docker/requirements.txt new file mode 100644 index 0000000..be697e7 --- /dev/null +++ b/docker/requirements.txt @@ -0,0 +1,4 @@ +requests==2.18.4 +fuzzyfinder==2.1.0 +prompt-toolkit==1.0.15 +blessings==1.6.1 |