Skip to content

Commit

Permalink
Fix typo in instruclab Makefile (#346)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
  • Loading branch information
rhatdan authored Apr 26, 2024
1 parent 12555f3 commit d4fbbdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions training/instructlab/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ instructlab:

.PHONY: nvidia
nvidia: instructlab
podman build --squash-all -t ${REGISTRY}/${REGISTRY_ORG}/instructlab-$@/${IMAGE_TAG} instructlab/containers/cuda
podman build --squash-all -t ${REGISTRY}/${REGISTRY_ORG}/instructlab-$@:${IMAGE_TAG} instructlab/containers/cuda

.PHONY: amd
amd: instructlab
podman build --squash-all -t ${IMAGE} ${REGISTRY}/${REGISTRY_ORG}/instructlab-$@/${IMAGE_TAG} -f instructlab/containers/rocm/Containerfile instructlab
podman build --squash-all -t ${IMAGE} ${REGISTRY}/${REGISTRY_ORG}/instructlab-$@:${IMAGE_TAG} -f instructlab/containers/rocm/Containerfile instructlab

.PHONY: push
push:
podman push ${REGISTRY}/${REGISTRY_ORG}/instructlab-nvidia/${IMAGE_TAG}
podman push ${REGISTRY}/${REGISTRY_ORG}/instructlab-amd/${IMAGE_TAG}
podman push ${REGISTRY}/${REGISTRY_ORG}/instructlab-nvidia:${IMAGE_TAG}
podman push ${REGISTRY}/${REGISTRY_ORG}/instructlab-amd:${IMAGE_TAG}

0 comments on commit d4fbbdc

Please sign in to comment.