Skip to content

Commit

Permalink
Merge pull request #14 from axiomzen/kan/zestify
Browse files Browse the repository at this point in the history
Kan/zestify
  • Loading branch information
Kay-Zee authored Sep 29, 2017
2 parents ee8238d + 21e98ff commit 07c424e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile.az
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM plugins/base:multiarch

ADD config/config.yml /
ADD bin/gorush /

EXPOSE 8088
ENTRYPOINT ["/gorush"]
CMD ["-c", "config.yml"]
1 change: 1 addition & 0 deletions Peelfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
project: gorush
36 changes: 36 additions & 0 deletions Zestfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
DOCKER_FILE=Dockerfile.az
BUILD_CONTAINER=golang:1.9
TEST_CONTAINER=
REPO=axiomzen
SERVICE_NAME=gorush
IMAGE_SERVER=
VERSION=0.0.1
MOUNT_DIR=/go/src/github.com/axiomzen
CACHE_DIR_SRC=
CACHE_DIR_DST=

PreBuild() {
:
}

PostBuild() {
:
}
Build() {
CGO_ENABLED=0 go build -v -o bin/gorush
:
}
Test() {
go test $(go list ./... | grep -v /vendor/ | grep -v /storage)
}

Version() {
git log -n 1 --pretty=format:%h -- .
}

PreBundle() {
:
}
PostBundle() {
:
}

0 comments on commit 07c424e

Please sign in to comment.