This repository has been archived by the owner on Aug 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add missing region in SQS data * allow execution by time rather than quantity of requirements * add test for stresstestTimeout * fix remainingRequestCount negative termination check * add test execution to Makefile * update golang versions to 1.8 in Dockerfile and Godeps
- Loading branch information
1 parent
5c7009c
commit 024801e
Showing
7 changed files
with
78 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM golang:1.5 | ||
FROM golang:1.8 | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y zip | ||
ADD . /go/src/github.com/gophergala2016/goad | ||
WORKDIR /go/src/github.com/gophergala2016/goad | ||
RUN go get -u github.com/jteeuwen/go-bindata/... | ||
RUN make bindata | ||
RUN go build -o /go/bin/goad-api webapi/webapi.go | ||
ADD . /go/src/github.com/goadapp/goad | ||
WORKDIR /go/src/github.com/goadapp/goad | ||
RUN go get -u github.com/jteeuwen/go-bindata/... | ||
RUN make linux | ||
# RUN go build -o /go/bin/goad-api webapi/webapi.go | ||
|
||
CMD ["/go/bin/goad-api", "-addr", ":8080"] | ||
EXPOSE 8080 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@zeph: this fixes #113.