Skip to content

Commit 602cff8

Browse files
committed
Merge pull request #189 from arschles/go-dev-upgrade
chore(Makefile): upgrade the go-dev image to 0.8.0
2 parents 4228224 + 1b03460 commit 602cff8

2 files changed

Lines changed: 75 additions & 556 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export GO15VENDOREXPERIMENT=1
55

66
# dockerized development environment variables
77
REPO_PATH := github.com/deis/${SHORT_NAME}
8-
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.6.0
8+
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.8.0
99
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1010
DEV_ENV_PREFIX := docker run --rm -e GO15VENDOREXPERIMENT=1 -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
1111
DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
@@ -41,7 +41,7 @@ glideup:
4141
# the build as a `docker build`.
4242
build:
4343
${DEV_ENV_PREFIX} -e CGO_ENABLED=0 ${DEV_ENV_IMAGE} go build -a -installsuffix cgo -ldflags ${LDFLAGS} -o ${BINARY_DEST_DIR}/boot boot.go || exit 1
44-
@$(call check-static-binary,$(BINARY_DEST_DIR)/boot)
44+
@$(call check-static-binary,$(BINARY_DEST_DIR)/boot)
4545
${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE} goupx ${BINARY_DEST_DIR}/boot || exit 1
4646

4747
test:

0 commit comments

Comments
 (0)