AI-multimodal / aimmdb

BSD 3-Clause "New" or "Revised" License
0 stars 10 forks source link

Fix bug introduced in #35. #59

Closed danielballan closed 1 year ago

danielballan commented 1 year ago

35 pinned the tiled base image on a tag does not exit because it omitted the leading v in the tag v0.1.0a74. I think the Dockerfile never worked:

$ docker build deploy/spin/docker/tiled/
Sending build context to Docker daemon  3.072kB
Step 1/9 : FROM ghcr.io/bluesky/tiled:0.1.0a74 as base
manifest unknown

Adding the v prefix, it works:

]$ docker build deploy/spin/docker/tiled/
Sending build context to Docker daemon  3.072kB
Step 1/9 : FROM ghcr.io/bluesky/tiled:v0.1.0a74 as base
v0.1.0a74: Pulling from bluesky/tiled
...