I am just getting started with Docker and am trying to build a new image using an existing image using the FROM command in my Dockerfile.
My Dockerfile is pretty simple - it looks like this:
# Pull base image from circle ci image
FROM circleci/node:latest-browers
# Install aws cli
RUN sudo apt-get update -qq && sudo apt-get install -y postgresql python-pip python-dev build-essential
RUN sudo pip install --upgrade pip
RUN sudo pip install --upgrade virtualenv
RUN sudo pip install awscli
But when I run docker build -t my-image . I get the following error:
manifest for circleci/node:latest-browers not found