-
-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into vendorize
Conflicts: analysis/analysis-engine.go analysis/analysis-engine_test.go cmd/activity-monitor/main.go cmd/boulder-start/main.go
- Loading branch information
Showing
35 changed files
with
1,034 additions
and
1,102 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 |
---|---|---|
|
@@ -22,6 +22,7 @@ _cgo_export.* | |
|
||
_testmain.go | ||
|
||
*.sw? | ||
*.exe | ||
*.test | ||
*.prof | ||
|
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,25 +1,35 @@ | ||
FROM golang:1.4 | ||
FROM golang:1.4.2 | ||
|
||
MAINTAINER J.C. Jones "jjones@mozilla.com" | ||
MAINTAINER J.C. Jones "jjones@letsencrypt.org" | ||
|
||
# Boulder exposes its web application at port TCP 4000 | ||
EXPOSE 4000 | ||
|
||
# Assume the configuration is in /etc/boulder | ||
ENV BOULDER_CONFIG=/boulder/config.json | ||
|
||
# Load the dependencies | ||
RUN go-wrapper download github.com/bifurcation/gose && \ | ||
go-wrapper download github.com/codegangsta/cli && \ | ||
go-wrapper download github.com/streadway/amqp && \ | ||
go-wrapper download github.com/mattn/go-sqlite3 && \ | ||
go-wrapper download github.com/go-sql-driver/mysql && \ | ||
go-wrapper download github.com/cloudflare/cfssl/auth && \ | ||
go-wrapper download github.com/cloudflare/cfssl/config && \ | ||
go-wrapper download github.com/cloudflare/cfssl/signer | ||
#go-wrapper download github.com/cloudflare/cfssl/signer/remote && \ | ||
|
||
# Copy in the Boulder sources | ||
RUN mkdir -p /go/src/github.com/letsencrypt/boulder | ||
COPY . /go/src/github.com/letsencrypt/boulder | ||
|
||
# Build Boulder | ||
RUN go install github.com/letsencrypt/boulder/cmd/boulder-start | ||
RUN go install \ | ||
github.com/letsencrypt/boulder/cmd/activity-monitor \ | ||
github.com/letsencrypt/boulder/cmd/boulder \ | ||
github.com/letsencrypt/boulder/cmd/boulder-ca \ | ||
github.com/letsencrypt/boulder/cmd/boulder-ra \ | ||
github.com/letsencrypt/boulder/cmd/boulder-sa \ | ||
github.com/letsencrypt/boulder/cmd/boulder-va \ | ||
github.com/letsencrypt/boulder/cmd/boulder-wfe | ||
|
||
ENTRYPOINT ["/go/bin/boulder-start"] | ||
CMD ["/go/bin/boulder"] |
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
Oops, something went wrong.