Merge pull request #382 from scrpgil/develop

fix docker build error by dockerBuildTemplate
This commit is contained in:
Sergey Lanzman 2017-03-19 15:38:10 +02:00 committed by GitHub
commit 9760ce6623
1 changed files with 1 additions and 2 deletions

View File

@ -44,8 +44,7 @@ ENTRYPOINT $APP_DIR/{{.Entrypoint}}
ADD . $APP_DIR
# Compile the binary and statically link
RUN cd $APP_DIR
RUN CGO_ENABLED=0 godep go build -ldflags '-d -w -s'
RUN cd $APP_DIR && CGO_ENABLED=0 godep go build -ldflags '-d -w -s'
EXPOSE {{.Expose}}
`