Skip to content

Commit

Permalink
feat: fix container image for db migrations (#81)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu <[email protected]>
  • Loading branch information
mtlmatt authored Jul 24, 2024
1 parent bf01de5 commit 81d6570
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion le-taxi-api-node.js/Jenkinsfile-dbMigrations
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ pipeline.withSourceCode(ctx) {
podTemplate(
label: WORKER_NAME,
inheritFrom: 'default',
imagePullSecrets: ["acr-auth"],
containers: [
containerTemplate(
name: CONTAINER_NAME,
image: ctx.draftImage.toString(),
image: ctx.containerDraftImageRegistry.getFullImageName(ctx.draftImage),
command: 'cat',
args: '',
runAsUser: "0", //ctx.applicationUserID,
Expand Down

0 comments on commit 81d6570

Please sign in to comment.