Install bash

pull/1775/head
Nikhil Parasaram 1 year ago committed by GitHub
parent 81bb1e68f1
commit def673c2db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      .circleci/config.yml

@ -145,10 +145,13 @@ jobs:
# container. # container.
dockerhub_release: dockerhub_release:
docker: docker:
- image: ubuntu:kinetic - image: docker:latest
steps: steps:
- checkout - checkout
- setup_remote_docker - setup_remote_docker
- run:
name: Install bash
command: apk add --no-cache bash
- run: - run:
name: Building Docker Image name: Building Docker Image
command: ./docker_build_and_deploy.sh mythril/myth command: ./docker_build_and_deploy.sh mythril/myth
@ -156,10 +159,13 @@ jobs:
# Release of the latest development version as mythril/myth-dev container. # Release of the latest development version as mythril/myth-dev container.
dockerhub_dev_release: dockerhub_dev_release:
docker: docker:
- image: ubuntu:kinetic - image: docker:latest
steps: steps:
- checkout - checkout
- setup_remote_docker - setup_remote_docker
- run:
name: Install bash
command: apk add --no-cache bash
- run: - run:
name: Building Docker Image name: Building Docker Image
command: ./docker_build_and_deploy.sh mythril/myth-dev command: ./docker_build_and_deploy.sh mythril/myth-dev

Loading…
Cancel
Save