aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--isort.cfg2
2 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b08ec9f..bd5a622 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,9 @@ setup: ## Clone down additional repos that are needed for building
build: ## Build the base image
docker build -t thornycrackers/neovim .
+build-nocache: ## Build the base image with no cache
+ docker build --no-cache=true -t thornycrackers/neovim .
+
up: build ## Bring the container up
docker run -dP -v $(CURDIR):/root/app --name $(CONTAINERNAME) $(IMAGENAME) /bin/bash -c 'while true; do echo hi; sleep 1; done;'
diff --git a/isort.cfg b/isort.cfg
index 0d515d6..2946f6b 100644
--- a/isort.cfg
+++ b/isort.cfg
@@ -8,5 +8,5 @@ default_section=FIRSTPARTY
skip=migrations
include_trailing_comma=True
# Because neovim runs in separate container, explicitly calling out third parties is needed
-known_third_party=pdfcrowd,PyPDF2,pytest,mock,model_mommy,adminactions,private_storage,wagtail,modelcluster,django_extensions,localflavor,post_office,paypal,djangocms_link,peewee,ccxt,openpyxl,logzero,blessings,expiringdict,opbeat,gspread,oauth2client,mailchimp3
+known_third_party=pdfcrowd,PyPDF2,pytest,mock,model_mommy,adminactions,private_storage,wagtail,modelcluster,django_extensions,localflavor,post_office,paypal,djangocms_link,peewee,ccxt,openpyxl,logzero,blessings,expiringdict,opbeat,gspread,oauth2client,mailchimp3,ratelimit,pytz
known_first_party=cms