Created
September 14, 2016 08:12
-
-
Save artemave/1550179dd624bbb32df88e951f02e140 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:16.04 | |
| run apt-get update -y | |
| run apt-get install -y apt-transport-https ca-certificates | |
| run apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
| run echo 'deb https://apt.dockerproject.org/repo ubuntu-xenial main' > /etc/apt/sources.list.d/docker.list | |
| run apt-get update -y | |
| run apt-get install -y linux-image-extra-virtual | |
| run apt-get install -y docker-engine curl | |
| run curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \ | |
| chmod +x /usr/local/bin/docker-machine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment