Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#683 Bugfix/INFRA-1707_fixing-docker-publish

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:bugfix/INFRA-1707_fixing-docker-publish
1 changed files with 14 additions and 3 deletions
  1. 14
    3
      .circleci/config.yml
@@ -684,26 +684,37 @@ workflows:
              - "slack/on-hold"
              - "slack/on-hold"
            <<: *release_tag_filter
            <<: *release_tag_filter
        - docker/publish:  # works on release
        - docker/publish:  # works on release
+          executor:
+              image: cimg/base
+              tag: stable-20.04
+              name: docker/docker
           image: deciai/super-gradients
           image: deciai/super-gradients
           remote-docker-version: << pipeline.parameters.remote_docker_version >>
           remote-docker-version: << pipeline.parameters.remote_docker_version >>
           update-description: true
           update-description: true
           use-buildkit: true
           use-buildkit: true
           use-remote-docker: true
           use-remote-docker: true
           use-docker-credentials-store: true
           use-docker-credentials-store: true
+          path: ./scripts
+          readme: ../README.md
           tag: latest,${CIRCLE_TAG}
           tag: latest,${CIRCLE_TAG}
-          extra_build_args: '--build-arg VERSION=${CIRCLE_TAG} --compress' #building from scratch as it faster and cheaper than download and retag
+          extra_build_args: '--build-arg VERSION=${CIRCLE_TAG}' #building from scratch as it faster and cheaper than download and retag
           requires:
           requires:
             - "hold-sg-public-release"
             - "hold-sg-public-release"
           <<: *release_tag_filter
           <<: *release_tag_filter
        - docker/publish: # works on release
        - docker/publish: # works on release
+          executor:
+              image: cimg/base
+              tag: stable-20.04
+              name: docker/docker
           image: deciai/super-gradients
           image: deciai/super-gradients
           remote-docker-version: << pipeline.parameters.remote_docker_version >>
           remote-docker-version: << pipeline.parameters.remote_docker_version >>
-          update-description: true
+          update-description: false
           use-buildkit: true
           use-buildkit: true
           use-remote-docker: true
           use-remote-docker: true
           use-docker-credentials-store: true
           use-docker-credentials-store: true
+          path: ./scripts
           tag: ${CIRCLE_TAG}-runtime
           tag: ${CIRCLE_TAG}-runtime
-          extra_build_args: '--build-arg VERSION=${CIRCLE_TAG} --build-arg DOCKER_IMAGE_TAG=11.3.1-runtime-ubuntu20.04  --compress'
+          extra_build_args: '--build-arg VERSION=${CIRCLE_TAG} --build-arg DOCKER_IMAGE_TAG=11.3.1-runtime-ubuntu20.04'
           requires:
           requires:
             - "hold-sg-public-release"
             - "hold-sg-public-release"
           <<: *release_tag_filter
           <<: *release_tag_filter
Discard