Skip to content

Commit eca0fd8

Browse files
committed
ref(Makefile): remove trailing slash from IMAGE_PREFIX
This change matches what other deis repos do, and keeps the build environment consistent.
1 parent db611d3 commit eca0fd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VERSION := $(shell git describe --tags --exact-match 2>/dev/null || echo latest)
22
REGISTRY ?= quay.io/
3-
IMAGE_PREFIX ?= deis/
4-
IMAGE := ${REGISTRY}${IMAGE_PREFIX}go-dev:${VERSION}
3+
IMAGE_PREFIX ?= deis
4+
IMAGE := ${REGISTRY}${IMAGE_PREFIX}/go-dev:${VERSION}
55

66
build:
77
docker build -t ${IMAGE} rootfs

0 commit comments

Comments
 (0)