aboutsummaryrefslogtreecommitdiff
path: root/intellij-idea/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'intellij-idea/Makefile')
-rw-r--r--intellij-idea/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/intellij-idea/Makefile b/intellij-idea/Makefile
deleted file mode 100644
index 598366f..0000000
--- a/intellij-idea/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
1IMAGE=intellij-idea:latest
2VERSION=2017.1.4
3REPO=575365190010.dkr.ecr.us-west-2.amazonaws.com
4
5all:
6 docker build --build-arg=idea_version=$(VERSION) -t $(IMAGE) .
7
8all-no-cache:
9 docker build --no-cache --build-arg=idea_version=$(VERSION) -t $(IMAGE) .
10
11run:
12 ./run
13
14publish:
15 eval $$(aws ecr get-login --region us-west-2)
16 docker tag $(IMAGE) $(REPO)/$(IMAGE)
17 docker push $(REPO)/$(IMAGE)