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