From 735d90548e52f0755ba4582d033f6c3a27d98000 Mon Sep 17 00:00:00 2001 From: Cryptophobia Date: Thu, 8 Oct 2020 16:28:47 -0400 Subject: [PATCH] chore(Makefile) update to latest hephy/go-dev:v1.28.3 image Signed-off-by: Cryptophobia --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a2392a..b852f50 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ REPO_PATH := github.com/teamhephy/${SHORT_NAME} # The following variables describe the containerized development environment # and other build options -DEV_ENV_IMAGE := hephy/go-dev:v1.26.2 +DEV_ENV_IMAGE := hephy/go-dev:v1.28.3 DEV_ENV_WORK_DIR := /go/src/${REPO_PATH} DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE} DEV_ENV_CMD_INT := docker run -it --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}