Update baseimages.md (#1453)

Docs used a `:` instead of a `.` for `ubuntu:16.04`.
This commit is contained in:
James Wang 2017-01-31 16:27:30 -08:00 committed by John Mulhausen
parent 53a7608acb
commit 9b472dc8ba
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ Assuming you built the "hello" executable example [from the Docker GitHub exampl
NOTE: Because Docker for Mac and Docker for Windows use a Linux VM, you must compile this code using a Linux toolchain to end up with a Linux binary. Not to worry, you can quickly pull down a Linux image and a build environment and build within it:
$ docker run --rm -it -v $PWD:/build ubuntu:16:04
$ docker run --rm -it -v $PWD:/build ubuntu:16.04
container# apt-get install build-essential
container# cd /build
container# gcc -o hello -static hello.c