Merge pull request #39 from williamboman/fix/makefile-tags

Makefile: fix incorrect tags
This commit is contained in:
William Boman 2017-10-05 20:31:37 +02:00 committed by GitHub
commit 41b1ac0478

View file

@ -4,14 +4,14 @@ ORGANISATION?=thelounge
all: main alpine slim
main:
docker build -t ${ORGANISATION}/lounge:v${THELOUNGE_VERSION} --build-arg THELOUNGE_VERSION=${THELOUNGE_VERSION} .
docker build -t ${ORGANISATION}/lounge:${THELOUNGE_VERSION} --build-arg THELOUNGE_VERSION=${THELOUNGE_VERSION} .
alpine:
docker build -f alpine/Dockerfile -t ${ORGANISATION}/lounge:v${THELOUNGE_VERSION}-alpine --build-arg THELOUNGE_VERSION=${THELOUNGE_VERSION} .
docker build -f alpine/Dockerfile -t ${ORGANISATION}/lounge:${THELOUNGE_VERSION}-alpine --build-arg THELOUNGE_VERSION=${THELOUNGE_VERSION} .
slim:
docker build -f slim/Dockerfile -t ${ORGANISATION}/lounge:v${THELOUNGE_VERSION}-slim --build-arg THELOUNGE_VERSION=${THELOUNGE_VERSION} .
docker build -f slim/Dockerfile -t ${ORGANISATION}/lounge:${THELOUNGE_VERSION}-slim --build-arg THELOUNGE_VERSION=${THELOUNGE_VERSION} .
.PHONY: alpine slim
.PHONY: main alpine slim