Dockerfile 196 B

1234567891011
  1. FROM golang:1.15.1 AS builder
  2. COPY . /go/kuiper
  3. WORKDIR /go/kuiper
  4. RUN apt update \
  5. && apt install -y zip upx pkg-config libczmq-dev build-essential debhelper
  6. RUN make pkg
  7. RUN .ci/test.sh