From 004225d6b5acc0fe56edac2cbe27629cee2cf187 Mon Sep 17 00:00:00 2001 From: Paco Aranda Date: Fri, 22 Nov 2024 09:38:15 +0100 Subject: [PATCH] [CI] Update base docker image (#5705) # Description Fixes and updates the frontend docker image generation **Type of change** **How Has This Been Tested** **Checklist** - I added relevant documentation - I followed the style guidelines of this project - I did a self-review of my code - I made corresponding changes to the documentation - I confirm My changes generate no new warnings - I have added tests that prove my fix is effective or that my feature works - I have added relevant notes to the CHANGELOG.md file (See https://keepachangelog.com/) --- .github/workflows/argilla-frontend.yml | 2 -- argilla-frontend/dev.frontend.Dockerfile | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/argilla-frontend.yml b/.github/workflows/argilla-frontend.yml index 3c3bdba738..2693757ef4 100644 --- a/.github/workflows/argilla-frontend.yml +++ b/.github/workflows/argilla-frontend.yml @@ -71,8 +71,6 @@ jobs: image-name: argilla/argilla-frontend-for-dev dockerfile: argilla-frontend/dev.frontend.Dockerfile platforms: linux/amd64 - build-args: | - ARGILLA_SERVER_TAG=main secrets: inherit deploy: diff --git a/argilla-frontend/dev.frontend.Dockerfile b/argilla-frontend/dev.frontend.Dockerfile index 79698d63be..d268ae7b02 100644 --- a/argilla-frontend/dev.frontend.Dockerfile +++ b/argilla-frontend/dev.frontend.Dockerfile @@ -1,6 +1,6 @@ -ARG ARGILLA_SERVER_TAG=main +ARG ARGILLA_SERVER_TAG=develop -FROM argilla/argilla-quickstart:${ARGILLA_SERVER_TAG} +FROM argilladev/argilla-hf-spaces:${ARGILLA_SERVER_TAG} USER root