Skip to content

Instantly share code, notes, and snippets.

@khayama-zz
Last active May 28, 2016 12:41
Show Gist options
  • Save khayama-zz/b10222f5fb7089fe3d7e1be89f081651 to your computer and use it in GitHub Desktop.
Save khayama-zz/b10222f5fb7089fe3d7e1be89f081651 to your computer and use it in GitHub Desktop.
mkdir ~/vdrift_ubuntu
cd ~/vdrift_ubuntu
touch Dockerfile
echo "FROM ubuntu:15.10" >> Dockerfile
echo "MAINTAINER khayama" >> Dockerfile
echo "ENV container docker" >> Dockerfile
echo "RUN apt-get update" >> Dockerfile
echo "RUN apt-get install -y wget sudo apt-utils lsb-release" >> Dockerfile
echo "RUN wget -c archive.getdeb.net/install_deb/playdeb_0.3-1~getdeb1_all.deb" >> Dockerfile
echo "RUN dpkg -i playdeb_0.3-1~getdeb1_all.deb" >> Dockerfile
echo "RUN apt-get update && apt-get upgrade -y" >> Dockerfile
echo "RUN apt-get install -y vdrift" >> Dockerfile
docker build -f ./Dockerfile -t ubuntu:vdrift01 --no-cache=true .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment