aboutsummaryrefslogtreecommitdiff
path: root/dropbox/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dropbox/Makefile')
-rw-r--r--dropbox/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/dropbox/Makefile b/dropbox/Makefile
deleted file mode 100644
index 817e869..0000000
--- a/dropbox/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
1REPO=575365190010.dkr.ecr.us-west-2.amazonaws.com
2IMAGE=dropbox:latest-alpine
3
4all:
5 docker build \
6 -t $(IMAGE) .
7
8all-no-cache:
9 docker build \
10 --no-cache \
11 -t $(IMAGE) .
12
13run:
14 docker run \
15 -v /home/mcrute/Dropbox:/home/mcrute/Dropbox \
16 $(IMAGE)
17
18publish:
19 eval $$(aws ecr get-login --region us-west-2)
20 docker tag $(IMAGE) $(REPO)/$(IMAGE)
21 docker push $(REPO)/$(IMAGE)