From 9f7847feb1795c0394adbb17b88b0edcfb3318ee Mon Sep 17 00:00:00 2001 From: Andres Carrillo <42779963+andresC98@users.noreply.github.com> Date: Fri, 11 Jul 2025 17:34:32 +0200 Subject: [PATCH] feat: non-root docker hub push (#12413) --- .github/workflows/ghcr_deploy.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index 81a70fec213..cc40d1ac0c0 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -73,7 +73,14 @@ jobs: push: true file: ./litellm-js/spend-logs/Dockerfile tags: litellm/litellm-spend_logs:${{ github.event.inputs.tag || 'latest' }} - + - + name: Build and push litellm-non_root image + uses: docker/build-push-action@v5 + with: + context: . + push: true + file: ./docker/Dockerfile.non_root + tags: litellm/litellm-non_root:${{ github.event.inputs.tag || 'latest' }} build-and-push-image: runs-on: ubuntu-latest # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.