Report this

What is the reason for this report?

Where is my Dockerfile with "docker pull ubuntu"?

Posted on June 20, 2016

I really don’t see the point of this tutorial: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04

Since it relies on a docker pull ubuntu image, where can I edit that Dockerfile to customize it further? Shouldn’t you typically rely on a Dockerfile for docker containers? The tutorial mentions that Dockerfiles are “beyond the scope” of the tutorial which I just find odd.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @alxvallejo,

In this case, the Docker image is already builded from a Dockerfile, and stored on the Docker hub platform.

When you run the pull command, Docker will just download the latest image of “ubuntu” from https://hub.docker.com/_/ubuntu/

If you click the “xenial/Dockerfile” link on this page, you will see the actual Dockerfile used to build the image.

If you need to customize this image, you should create a Dockerfile, with the first line:

FROM ubuntu

Then you can add all your customizations.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.