Skip to content

Instantly share code, notes, and snippets.

@larrycai
Created July 4, 2014 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larrycai/91cb5b5a7e944417f781 to your computer and use it in GitHub Desktop.
Save larrycai/91cb5b5a7e944417f781 to your computer and use it in GitHub Desktop.
docker's Dockerfile
FROM ubuntu:latest
RUN apt-get update
MAINTAINER Larry Cai "larry.caiyu@gmail.com"
RUN apt-get install -y curl make
RUN curl https://get.docker.io/builds/Linux/x86_64/docker-latest -o /usr/local/bin/docker
RUN chmod +x /usr/local/bin/docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment