From 22debea9967565d4d366bfc1b9ccb22dbd4c6942 Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Fri, 19 Aug 2016 16:24:53 -0600 Subject: [PATCH 1/3] fix(.travis.yml): unset DEIS_REGISTRY before building image --- .travis.yml | 2 +- Makefile | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8624682..18871e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,4 @@ sudo: required install: - make bootstrap script: - - make test build docker-build + - DEIS_REGISTRY='' make test build docker-build diff --git a/Makefile b/Makefile index fe11d00..5d0e32e 100644 --- a/Makefile +++ b/Makefile @@ -36,12 +36,10 @@ test: ${DEV_ENV_CMD} go test ${TEST_PACKAGES} docker-build: build - # build the main image docker build --rm -t ${IMAGE} rootfs docker tag ${IMAGE} ${MUTABLE_IMAGE} - deploy: build docker-build docker-push .PHONY: all bootstrap glideup build test docker-build deploy From 4e55f4270ed1612d17f568bb1b341b3b7cfe678e Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Fri, 19 Aug 2016 15:53:19 -0600 Subject: [PATCH 2/3] chore(Makefile): update to go-dev 0.17.0 Includes the go 1.7 toolchain. See https://tip.golang.org/doc/go1.7 --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5d0e32e..b3f5c64 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,8 @@ SHORT_NAME := minio -export GO15VENDOREXPERIMENT=1 - # dockerized development environment variables REPO_PATH := github.com/deis/${SHORT_NAME} -DEV_ENV_IMAGE := quay.io/deis/go-dev:0.9.1 +DEV_ENV_IMAGE := quay.io/deis/go-dev:0.17.0 DEV_ENV_WORK_DIR := /go/src/${REPO_PATH} DEV_ENV_PREFIX := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE} From a686c8a3361ed9c6f4c3ab8236ba1dc1a651f35b Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Fri, 19 Aug 2016 15:53:43 -0600 Subject: [PATCH 3/3] chore(rootfs/Dockerfile): update to latest base image --- rootfs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/Dockerfile b/rootfs/Dockerfile index 043cbe0..6d76d86 100644 --- a/rootfs/Dockerfile +++ b/rootfs/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/deis/base:0.2.0 +FROM quay.io/deis/base:0.3.1 RUN adduser --system \ --shell /bin/bash \