From 81bb1e68f18469d894b6eface42f5b72c2fa4f13 Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Mon, 5 Jun 2023 17:38:12 +0530 Subject: [PATCH] Use ubuntu:kinetic for bash --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2123e3ea..1e52ef99 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -145,7 +145,7 @@ jobs: # container. dockerhub_release: docker: - - image: docker:stable + - image: ubuntu:kinetic steps: - checkout - setup_remote_docker @@ -156,13 +156,13 @@ jobs: # Release of the latest development version as mythril/myth-dev container. dockerhub_dev_release: docker: - - image: docker:stable + - image: ubuntu:kinetic steps: - checkout - setup_remote_docker - run: name: Building Docker Image - command: /bin/bash ./docker_build_and_deploy.sh mythril/myth-dev + command: ./docker_build_and_deploy.sh mythril/myth-dev workflows: version: 2