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

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: Rebased, updated from comments. 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
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 outyet command by default when the container starts.
martiniss 2016/01/27 22:19:43 outyet?
dnj 2016/01/29 20:46:51 Done.
15 ENTRYPOINT ["/opt/logdog_collector/run.sh", "/go/bin/logdog_collector"]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698