| # Copyright 2017 The Go Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style |
| # license that can be found in the LICENSE file. |
| FROM golang:1.9.2 |
| LABEL maintainer "golang-dev@googlegroups.com" |
| |
| # BEGIN deps (run `make update-deps` to update) |
| |
| # Repo cloud.google.com/go at 3051b91 (2017-12-06) |
| ENV REV=3051b919da3b8d62bc3a57ab4b353ca1c72402d5 |
| RUN go get -d cloud.google.com/go/compute/metadata `#and 6 other pkgs` &&\ |
| (cd /go/src/cloud.google.com/go && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo github.com/golang/protobuf at 1e59b77 (2017-11-13) |
| ENV REV=1e59b77b52bf8e4b449a57e6f79f21226d571845 |
| RUN go get -d github.com/golang/protobuf/proto `#and 8 other pkgs` &&\ |
| (cd /go/src/github.com/golang/protobuf && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo github.com/googleapis/gax-go at 317e000 (2017-09-15) |
| ENV REV=317e0006254c44a0ac427cc52a0e083ff0b9622f |
| RUN go get -d github.com/googleapis/gax-go &&\ |
| (cd /go/src/github.com/googleapis/gax-go && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo golang.org/x/net at faacc1b (2017-12-07) |
| ENV REV=faacc1b5e36e3ff02cbec9661c69ac63dd5a83ad |
| RUN go get -d golang.org/x/net/context `#and 8 other pkgs` &&\ |
| (cd /go/src/golang.org/x/net && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo golang.org/x/oauth2 at 6a2004c (2017-12-06) |
| ENV REV=6a2004c8907a86949d71c664c81574897a4e55a6 |
| RUN go get -d golang.org/x/oauth2 `#and 5 other pkgs` &&\ |
| (cd /go/src/golang.org/x/oauth2 && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo golang.org/x/text at be25de4 (2017-12-07) |
| ENV REV=be25de41fadfae372d6470bda81ca6beb55ef551 |
| RUN go get -d golang.org/x/text/secure/bidirule `#and 4 other pkgs` &&\ |
| (cd /go/src/golang.org/x/text && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo golang.org/x/tools at 5d8e38b (2017-12-10) |
| ENV REV=5d8e38b9550d35d893ff8276756b4118ec1bf360 |
| RUN go get -d golang.org/x/tools/go/ast/astutil `#and 3 other pkgs` &&\ |
| (cd /go/src/golang.org/x/tools && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo google.golang.org/api at 9a048ca (2017-12-07) |
| ENV REV=9a048cac3675aa589c62a35d7d42b25451dd15f1 |
| RUN go get -d google.golang.org/api/googleapi `#and 6 other pkgs` &&\ |
| (cd /go/src/google.golang.org/api && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo google.golang.org/genproto at 7f0da29 (2017-11-23) |
| ENV REV=7f0da29060c682909f650ad8ed4e515bd74fa12a |
| RUN go get -d google.golang.org/genproto/googleapis/api/annotations `#and 4 other pkgs` &&\ |
| (cd /go/src/google.golang.org/genproto && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Repo google.golang.org/grpc at b8191e5 (2017-12-06) |
| ENV REV=b8191e57b23de650278db4d23bf596219e5f3665 |
| RUN go get -d google.golang.org/grpc `#and 24 other pkgs` &&\ |
| (cd /go/src/google.golang.org/grpc && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV) |
| |
| # Optimization to speed up iterative development, not necessary for correctness: |
| RUN go install cloud.google.com/go/compute/metadata \ |
| cloud.google.com/go/datastore \ |
| cloud.google.com/go/internal \ |
| cloud.google.com/go/internal/atomiccache \ |
| cloud.google.com/go/internal/fields \ |
| cloud.google.com/go/internal/version \ |
| github.com/golang/protobuf/proto \ |
| github.com/golang/protobuf/protoc-gen-go/descriptor \ |
| github.com/golang/protobuf/ptypes \ |
| github.com/golang/protobuf/ptypes/any \ |
| github.com/golang/protobuf/ptypes/duration \ |
| github.com/golang/protobuf/ptypes/struct \ |
| github.com/golang/protobuf/ptypes/timestamp \ |
| github.com/golang/protobuf/ptypes/wrappers \ |
| github.com/googleapis/gax-go \ |
| golang.org/x/net/context \ |
| golang.org/x/net/context/ctxhttp \ |
| golang.org/x/net/http2 \ |
| golang.org/x/net/http2/hpack \ |
| golang.org/x/net/idna \ |
| golang.org/x/net/internal/timeseries \ |
| golang.org/x/net/lex/httplex \ |
| golang.org/x/net/trace \ |
| golang.org/x/oauth2 \ |
| golang.org/x/oauth2/google \ |
| golang.org/x/oauth2/internal \ |
| golang.org/x/oauth2/jws \ |
| golang.org/x/oauth2/jwt \ |
| golang.org/x/text/secure/bidirule \ |
| golang.org/x/text/transform \ |
| golang.org/x/text/unicode/bidi \ |
| golang.org/x/text/unicode/norm \ |
| golang.org/x/tools/go/ast/astutil \ |
| golang.org/x/tools/godoc/static \ |
| golang.org/x/tools/imports \ |
| google.golang.org/api/googleapi \ |
| google.golang.org/api/googleapi/internal/uritemplates \ |
| google.golang.org/api/internal \ |
| google.golang.org/api/iterator \ |
| google.golang.org/api/option \ |
| google.golang.org/api/transport/grpc \ |
| google.golang.org/genproto/googleapis/api/annotations \ |
| google.golang.org/genproto/googleapis/datastore/v1 \ |
| google.golang.org/genproto/googleapis/rpc/status \ |
| google.golang.org/genproto/googleapis/type/latlng \ |
| google.golang.org/grpc \ |
| google.golang.org/grpc/balancer \ |
| google.golang.org/grpc/balancer/base \ |
| google.golang.org/grpc/balancer/roundrobin \ |
| google.golang.org/grpc/codes \ |
| google.golang.org/grpc/connectivity \ |
| google.golang.org/grpc/credentials \ |
| google.golang.org/grpc/credentials/oauth \ |
| google.golang.org/grpc/encoding \ |
| google.golang.org/grpc/grpclb/grpc_lb_v1/messages \ |
| google.golang.org/grpc/grpclog \ |
| google.golang.org/grpc/internal \ |
| google.golang.org/grpc/keepalive \ |
| google.golang.org/grpc/metadata \ |
| google.golang.org/grpc/naming \ |
| google.golang.org/grpc/peer \ |
| google.golang.org/grpc/resolver \ |
| google.golang.org/grpc/resolver/dns \ |
| google.golang.org/grpc/resolver/manual \ |
| google.golang.org/grpc/resolver/passthrough \ |
| google.golang.org/grpc/stats \ |
| google.golang.org/grpc/status \ |
| google.golang.org/grpc/tap \ |
| google.golang.org/grpc/transport |
| # END deps |
| |
| # Add and compile frontend daemon |
| COPY . /go/src/frontend/ |
| RUN go install frontend |
| |
| RUN mkdir /app |
| |
| COPY edit.html /app |
| COPY static /app/static |
| |
| WORKDIR /app |
| |
| EXPOSE 8080 |
| ENTRYPOINT ["/go/bin/frontend"] |