Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: server/cmd/logdog_collector/Dockerfile

Issue 1610993002: LogDog: Add collector service implementation. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Comments, rebase. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « common/proto/logdog/svcconfig/config.pb.go ('k') | server/cmd/logdog_collector/main.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Dockerfile extending the generic Go image with application files for a
2 # single application.
3 FROM golang:1.4
4
5 # Copy the local package files to the container's workspace.
6 ADD _gopath/src/ /go/src
7 COPY run.sh /opt/logdog_collector/run.sh
8
9 # Build the command inside the container.
10 # (You may fetch or manage dependencies here,
11 # either manually or with a tool like "godep".)
12 RUN go install github.com/luci/luci-go/server/cmd/logdog_collector
13
14 # Run the output command by default when the container starts.
15 ENTRYPOINT ["/opt/logdog_collector/run.sh", "/go/bin/logdog_collector"]
OLDNEW
« no previous file with comments | « common/proto/logdog/svcconfig/config.pb.go ('k') | server/cmd/logdog_collector/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698