Yuday
Yuday

Reputation: 4489

Docker create images "Ubuntu 14.04" with Docker file

I want to create images with dockerfile, can be assisted to install Ubuntu 14:04 with dockerfile?

Upvotes: 1

Views: 164

Answers (1)

VonC
VonC

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

Related Questions