attempt X
This commit is contained in:
parent
67bcc9e90e
commit
e92883c406
3 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@ pipeline:
|
||||||
commands:
|
commands:
|
||||||
- mkdir -p /go/bin /go/src
|
- mkdir -p /go/bin /go/src
|
||||||
- go get github.com/revel/cmd/revel
|
- go get github.com/revel/cmd/revel
|
||||||
- revel build github.com/CyCoreSystems/cycore-web /go/tmp prod
|
- revel build github.com/CyCoreSystems/cycore-web tmp prod >> /dev/null
|
||||||
publish:
|
publish:
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
repo: quay.io/cycore/web
|
repo: quay.io/cycore/web
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
FROM ulexus/go-minimal
|
FROM ulexus/go-minimal
|
||||||
COPY /go/tmp/cycore-web /app
|
COPY tmp/cycore-web /app
|
||||||
COPY /go/tmp/src /
|
COPY tmp/src /
|
||||||
|
|
|
@ -182,8 +182,8 @@ module.testrunner =
|
||||||
|
|
||||||
log.trace.output = off
|
log.trace.output = off
|
||||||
log.info.output = off
|
log.info.output = off
|
||||||
log.warn.output = log/%(app.name)s.log
|
log.warn.output = stderr
|
||||||
log.error.output = log/%(app.name)s.log
|
log.error.output = stderr
|
||||||
|
|
||||||
# Revel log flags. Possible flags defined by the Go `log` package,
|
# Revel log flags. Possible flags defined by the Go `log` package,
|
||||||
# please refer https://golang.org/pkg/log/#pkg-constants
|
# please refer https://golang.org/pkg/log/#pkg-constants
|
||||||
|
|
Loading…
Reference in a new issue