page_title: Docker Images Test page_description: How to work with Docker images. page_keywords: documentation, docs, the docker guide, docker guide, docker, docker platform, virtualization framework, docker.io, Docker images, Docker image, image management, Docker repos, Docker repositories, docker, docker tag, docker tags, Docker Hub, collaboration Back # Dockerfile Tutorial ## Test your Dockerfile knowledge - Level 1 ### Questions
# This is a Dockerfile to create an image with Memcached and Emacs installed.
# VERSION 1.0
# use the ubuntu base image provided by dotCloud ub
E B, eric.bardin@dotcloud.com
# make sure the package repository is up to date echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list apt-get update
# install memcached RUN apt-get install -y
# install emacs apt-get install -y emacs23
In the next level, we will go into more detail about how to specify which command should be executed when the container starts, which user to use, and how expose a particular port.
Back Go to the next level