0

Why is docker not found? Do I need to use a different docker image than debian:latest? I want the latest debian image so does that mean I need to manually install Docker?

orbs:
  aws-ecr: circleci/aws-ecr@6.2.0
version: 2.1

workflows:
  # Build every commit on every branch without pushing to ECR
  build_image:
    jobs:
      - build_image

jobs:
  build_image:
    docker:
      - image: debian:latest
    steps:
      - aws-ecr/build-image:
          account-url: AWS_ACCOUNT_URL
          repo: node

enter image description here

Catfish
  • 101
  • 1

1 Answers1

1

Try adding,- steup_remote_docker before - aws-ecr/build-image:

Manish_
  • 108
  • 1
  • 1
  • 7