Scott Baker | bdb962b | 2020-04-03 10:53:36 -0700 | [diff] [blame] | 1 | # copyright 2018-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | FROM golang:1.12 AS build-env |
| 16 | SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
| 17 | RUN /bin/true | cat |
| 18 | RUN apt-get update && apt-get install --no-install-recommends -y --allow-downgrades \ |
| 19 | git=1:2.20.1-2+deb10u1 \ |
| 20 | gcc=4:8.3.0-1 \ |
| 21 | curl=7.64.0-4 \ |
| 22 | unzip=6.0-23+deb10u1 |
| 23 | # Install these prereqs now so they get built into a container layer and cached |
| 24 | # TODO: Revisit once demo-test implements mod=vendor |
| 25 | RUN go get -v google.golang.org/grpc \ |
| 26 | && go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway \ |
| 27 | && go get -v github.com/golang/protobuf/protoc-gen-go \ |
| 28 | && go get github.com/sirupsen/logrus \ |
| 29 | && go get github.com/Shopify/sarama |
| 30 | # Install protoc, same steps as in main importer dockerfile |
| 31 | ENV PROTOC_VERSION="3.7.0" |
| 32 | ENV PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969" |
| 33 | RUN curl -L -o /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip \ |
| 34 | && mkdir /tmp/protoc3 \ |
| 35 | && echo "$PROTOC_SHA256SUM /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - \ |
| 36 | && unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \ |
| 37 | && mv /tmp/protoc3/bin/* /usr/local/bin/ \ |
| 38 | && mv /tmp/protoc3/include/* /usr/local/include/ |
| 39 | RUN mkdir /app |
| 40 | COPY . /app/ |
| 41 | WORKDIR /app |
| 42 | ENV GO111MODULE=on |
| 43 | ENV PROTOC_VERSION="3.7.0" |
| 44 | ENV PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969" |
| 45 | |
| 46 | WORKDIR /app/demo_test |
| 47 | RUN make prereq |
| 48 | RUN make proto/importer.pb.go |
| 49 | # Note: "make demotest" produces an executable that throws "No such file" errors. Investigate. |
| 50 | RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux go build -o demotest . |
| 51 | |
| 52 | # Also build the client, as having it inside the container may facilitate testing without |
| 53 | # having to setup port forwardin |
| 54 | WORKDIR /app/demo_test/functional_test |
| 55 | RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux go build -o dm . |
| 56 | |
| 57 | FROM alpine:3.9.4 |
| 58 | WORKDIR /app/demo_test |
| 59 | COPY --from=build-env /app/demo_test/demotest . |
| 60 | COPY --from=build-env /app/demo_test/functional_test/dm . |
| 61 | ENTRYPOINT ["./demotest"] |
| 62 | |