blob: efd6ce9ab606a8a23ac703cb3d6966ae068505e4 [file] [log] [blame]
Scott Bakerbdb962b2020-04-03 10:53:36 -07001# 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
15FROM golang:1.12 AS build-env
16SHELL ["/bin/bash", "-o", "pipefail", "-c"]
17RUN /bin/true | cat
18RUN 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
25RUN 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
31ENV PROTOC_VERSION="3.7.0"
32ENV PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969"
33RUN 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/
39RUN mkdir /app
40COPY . /app/
41WORKDIR /app
42ENV GO111MODULE=on
43ENV PROTOC_VERSION="3.7.0"
44ENV PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969"
45
46WORKDIR /app/demo_test
47RUN make prereq
48RUN make proto/importer.pb.go
49# Note: "make demotest" produces an executable that throws "No such file" errors. Investigate.
50RUN 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
54WORKDIR /app/demo_test/functional_test
55RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux go build -o dm .
56
57FROM alpine:3.9.4
58WORKDIR /app/demo_test
59COPY --from=build-env /app/demo_test/demotest .
60COPY --from=build-env /app/demo_test/functional_test/dm .
61ENTRYPOINT ["./demotest"]
62