sseefried / docker-build-ghc-android

A Dockerfile to build a GHC 7.8.3 ARM cross compiler for Android development
58 stars 13 forks source link

apt-get update should not be on its own line #3

Closed squid-lee closed 9 years ago

squid-lee commented 9 years ago

Putting update on its own line before an install is not that helpful - it allows the update and install to potentially be run significant time spans apart, so you'll install from a stale cache. Instead, put update on the same line as install.

sseefried commented 9 years ago

I agree. Pulled.