Manifest not found

Hi Docker Community!

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

Any help would be appreciated!

Did you mean “browsers”, with two "s"s? (Docker lists all of the tags for that image and many of them are “browsers”.)

Haha! yes. Good old typo. I just figured it out. Thanks for your help though :slight_smile:

shouldn’t that be (notice the extra s)

circleci/node:latest-browsers

Hi,
I am seeing the same error when I try to pull to anything from my docker on Windows 10 app.

Very Odd - this command runs fine -

docker run -it fedora bash

but a Dockerfle with nothing but
#Base Image
FROM node:fedora

fails with the manifest message ???

docker build .
Sending build context to Docker daemon 1.665GB
Step 1/1 : FROM node:fedora
manifest for node:fedora not found

Same thing for Ubuntu

docker run -it ubuntu bash
Unable to find image ‘ubuntu:latest’ locally
latest: Pulling from library/ubuntu
d51af753c3d3: Pull complete
fc878cd0a91c: Pull complete
6154df8ff988: Pull complete
fee5db0ff82f: Pull complete
Digest: sha256:747d2dbbaaee995098c9792d99bd333c6783ce56150d1b11e333bbceed5c54d7
Status: Downloaded newer image for ubuntu:latest
root@ecf1cd7167e9:/#

the build . fail with the same message ???

Thank,
Don

More ODD !!!
If I use
FROM fedora
rather than
FROM node:fedora

It works ?