aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2018-05-17 20:37:21 +0000
committerMike Crute <mike@crute.us>2018-05-17 20:37:21 +0000
commit64c0e232c70623f12d988b455542b77f01ddc3a6 (patch)
treeb13068f6a2f504951442eac6574c5ef18dd3f675
parent33355dfd422e6096d241467857d3e725315790b2 (diff)
downloaddockerfiles-64c0e232c70623f12d988b455542b77f01ddc3a6.tar.bz2
dockerfiles-64c0e232c70623f12d988b455542b77f01ddc3a6.tar.xz
dockerfiles-64c0e232c70623f12d988b455542b77f01ddc3a6.zip
Update bind to use alpine edge
-rw-r--r--bind/Dockerfile2
-rw-r--r--bind/Makefile7
2 files changed, 3 insertions, 6 deletions
diff --git a/bind/Dockerfile b/bind/Dockerfile
index 62cc149..ad06dfa 100644
--- a/bind/Dockerfile
+++ b/bind/Dockerfile
@@ -1,4 +1,4 @@
1FROM alpine:latest 1FROM alpine:edge
2LABEL maintainer="Mike Crute <mike@crute.us>" 2LABEL maintainer="Mike Crute <mike@crute.us>"
3 3
4RUN \ 4RUN \
diff --git a/bind/Makefile b/bind/Makefile
index d09a70b..2ac0002 100644
--- a/bind/Makefile
+++ b/bind/Makefile
@@ -1,5 +1,4 @@
1REPO=575365190010.dkr.ecr.us-west-2.amazonaws.com 1IMAGE=docker.crute.me/bind:latest-alpine
2IMAGE=bind:latest-alpine
3 2
4all: 3all:
5 docker build -t $(IMAGE) . 4 docker build -t $(IMAGE) .
@@ -17,6 +16,4 @@ run:
17 $(IMAGE) 16 $(IMAGE)
18 17
19publish: 18publish:
20 eval $$(aws ecr get-login --region us-west-2) 19 docker push $(IMAGE)
21 docker tag $(IMAGE) $(REPO)/$(IMAGE)
22 docker push $(REPO)/$(IMAGE)