Skip to content

Commit

Permalink
fix: Rename registry (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah authored Jan 3, 2024
1 parent 5ee44fc commit b9f6d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const buildDockerfile = async (
const supportedTargets = await pMap(
plugin.buildTargets(),
async ({ os, arch }) => {
const imageRepository = `registry.cloudquery.io/${plugin.team()}/${plugin.kind()}-${plugin.name()}`;
const imageRepository = `docker.cloudquery.io/${plugin.team()}/${plugin.kind()}-${plugin.name()}`;
const imageTag = `${imageRepository}:${pluginVersion}-${os}-${arch}`;
const imageTar = `plugin-${plugin.name()}-${pluginVersion}-${os}-${arch}.tar`;
const imagePath = `${outputDirectory}/${imageTar}`;
Expand Down

0 comments on commit b9f6d6b

Please sign in to comment.