Reputation: 4489
I want to create images with dockerfile, can be assisted to install Ubuntu 14:04 with dockerfile?
Upvotes: 1
Views: 164
Reputation: 1323055
You simply start your Dockerfile with:
FROM ubuntu:14.04
You can then add anything you need on top of that base image.
Upvotes: 2