Skip to content

Commit

Permalink
Add latest tag for all python versions (#502)
Browse files Browse the repository at this point in the history
This was failing the LCM serve deployment due to missing
`autonomi/nos:latest-gpu-py310-cu118`

## Summary

<!-- Please give a short summary of the change and the problem this
solves. -->

## Related issues

<!-- For example: "Closes #1234" -->

## Checks

- [x] `make lint`: I've run `make lint` to lint the changes in this PR.
- [x] `make test`: I've made sure the tests (`make test-cpu` or `make
test`) are passing.
- Additional tests:
   - [ ] Benchmark tests (when contributing new models)
   - [ ] GPU/HW tests
  • Loading branch information
outtanames authored Jan 4, 2024
1 parent 86d709b commit 520e9ab
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions makefiles/Makefile.agibuild.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ agi-build-py38-cpu:
-p 3.8.15 \
-b debian:buster-slim \
-t '${DOCKER_IMAGE_NAME}:${NOS_VERSION_TAG}-{target}-py38'
docker tag \
${DOCKER_IMAGE_NAME}:latest-cpu-py38

agi-build-py38-cu118:
agi-pack build ${AGIPACK_ARGS} \
Expand All @@ -42,6 +44,8 @@ agi-build-py38-cu118:
-p 3.8.15 \
-b nvidia/cuda:11.8.0-base-ubuntu22.04 \
-t '${DOCKER_IMAGE_NAME}:${NOS_VERSION_TAG}-{target}-py38-cu118'
docker tag \
${DOCKER_IMAGE_NAME}:latest-gpu-py38-cu118

agi-build-py39-cu118:
agi-pack build ${AGIPACK_ARGS} \
Expand All @@ -51,6 +55,8 @@ agi-build-py39-cu118:
-p 3.9.13 \
-b nvidia/cuda:11.8.0-base-ubuntu22.04 \
-t '${DOCKER_IMAGE_NAME}:${NOS_VERSION_TAG}-{target}-py39-cu118'
docker tag \
${DOCKER_IMAGE_NAME}:latest-gpu-py39-cu118

agi-build-py310-cu118:
agi-pack build ${AGIPACK_ARGS} \
Expand All @@ -60,6 +66,8 @@ agi-build-py310-cu118:
-p 3.10.11 \
-b nvidia/cuda:11.8.0-base-ubuntu22.04 \
-t '${DOCKER_IMAGE_NAME}:${NOS_VERSION_TAG}-{target}-py310-cu118'
docker tag \
${DOCKER_IMAGE_NAME}:latest-gpu-py310-cu118

agi-build-py311-cu118:
agi-pack build ${AGIPACK_ARGS} \
Expand All @@ -69,6 +77,8 @@ agi-build-py311-cu118:
-p 3.11.4 \
-b nvidia/cuda:11.8.0-base-ubuntu22.04 \
-t '${DOCKER_IMAGE_NAME}:${NOS_VERSION_TAG}-{target}-py311-cu118'
docker tag \
${DOCKER_IMAGE_NAME}:latest-gpu-py311-cu118


agi-build-cu118: \
Expand Down

0 comments on commit 520e9ab

Please sign in to comment.