From 73340d2f6bc6a8e7f206a20be10b87f7076c5191 Mon Sep 17 00:00:00 2001 From: Sri Vishnnu Totakura Date: Sun, 9 Sep 2018 10:09:56 +0000 Subject: [PATCH] Build 2.7-alpine3.7 for raspberry pi --- 2.7/alpine3.7/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 2.7/alpine3.7/Makefile diff --git a/2.7/alpine3.7/Makefile b/2.7/alpine3.7/Makefile new file mode 100644 index 000000000..e0f468b51 --- /dev/null +++ b/2.7/alpine3.7/Makefile @@ -0,0 +1,12 @@ +REPO ?= forrpi/python +TAG ?= 2.7-apline3.7 + +all: build push + +build: Dockerfile + docker build --rm -t $(REPO):$(TAG) . + docker tag $(REPO):$(TAG) $(REPO):latest + +push: + docker push $(REPO):$(TAG) + docker push $(REPO):latest