Fix Docker build
authorRyan Skoblenick <ryan@skoblenick.com>
Wed, 31 Jan 2018 06:33:03 +0000 (01:33 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 31 Jan 2018 08:16:28 +0000 (09:16 +0100)
commita34213f0b5624de101272aab469ca9b6fe0c273f
treea4594c8d63794604b05ce432504fb34d177af966
parentfe40823de0e0f4768e070a87da2834b8c1e430ec
Fix Docker build

The present Dockerfile in master does not build a Hugo container. The
build container prematurely exits because `dep ensure` can not locate
`Gopkg.toml` due to the source files not being copied/added to the
container prior to running this command. The minimal change require
to resolve the issue is merely move the ADD source before the RUN dep.

Fixes #4076
Resolves #4077
Dockerfile