Skip to content
This repository was archived by the owner on Sep 2, 2020. It is now read-only.

Commit 15af74e

Browse files
committed
Fix build hook tag names
1 parent df1ed4b commit 15af74e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

hooks/build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
docker build --target=production -t $IMAGE_NAME:$DOCKER_TAG .
3-
docker build --target=development -t $IMAGE_NAME-dev:$DOCKER_TAG .
2+
docker build --target=production -t $DOCKER_REPO:$DOCKER_TAG .
3+
docker build --target=development -t $DOCKER_REPO-dev:$DOCKER_TAG .

hooks/push

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
docker push $IMAGE_NAME:$DOCKER_TAG
3-
docker push $IMAGE_NAME-dev:$DOCKER_TAG
2+
docker push $DOCKER_REPO:$DOCKER_TAG
3+
docker push $DOCKER_REPO-dev:$DOCKER_TAG

0 commit comments

Comments
 (0)