File: Dockerfile

package info (click to toggle)
golang-github-envoyproxy-protoc-gen-validate 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,720 kB
  • sloc: java: 1,768; python: 1,203; xml: 893; cpp: 414; makefile: 154; sh: 9
file content (80 lines) | stat: -rw-r--r-- 2,218 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
FROM ubuntu:focal

ENV DEBIAN_FRONTEND=noninteractive
# apt packages
ENV INSTALL_DEPS \
  ca-certificates \
  git \
  make \
  zip \
  unzip \
  g++ \
  wget \
  maven \
  patch \
  python3 \
  python3-distutils \
  python3-setuptools \
  apt-transport-https \
  curl \
  openjdk-8-jdk \
  gnupg 

RUN apt update \
  && apt install -y -q --no-install-recommends ${INSTALL_DEPS} \
  && apt clean

# bazel
ENV BAZEL_VER=6.1.1
RUN wget -q -O bazel https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VER}/bazel-${BAZEL_VER}-linux-$([ $(uname -m) = "aarch64" ] && echo "arm64" || echo "x86_64") \
  && chmod +x bazel \
  && mv bazel usr/local/bin/bazel

# protoc
ENV PROTOC_VER=22.2
RUN export PROTOC_REL=protoc-${PROTOC_VER}-linux-$([ $(uname -m) = "aarch64" ] && echo "aarch" || echo "x86")_64.zip \
  && wget -q https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VER}/${PROTOC_REL} \
  && unzip ${PROTOC_REL} -d protoc \
  && mv protoc /usr/local \
  && ln -s /usr/local/protoc/bin/protoc /usr/local/bin \
  && rm ${PROTOC_REL}

# go
ENV GOROOT /usr/local/go
ENV GOPATH /go
ENV PATH $GOPATH/bin:$GOROOT/bin:$PATH
RUN export GORELEASE=go1.19.7.linux-$([ $(uname -m) = "aarch64" ] && echo "arm64" || echo "amd64").tar.gz \
  && wget -q https://dl.google.com/go/$GORELEASE \
  && tar -C $(dirname $GOROOT) -xzf $GORELEASE \
  && rm $GORELEASE \
  && mkdir -p $GOPATH/{src,bin,pkg}

# protoc-gen-go
ENV PGG_VER=v1.30.0
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@${PGG_VER} \
  && rm -rf $(go env GOCACHE) \
  && rm -rf $(go env GOMODCACHE)

# buildozer
ENV BDR_VER=6.0.1
RUN go install github.com/bazelbuild/buildtools/buildozer@${BDR_VER} \
  && rm -rf $(go env GOCACHE) \
  && rm -rf $(go env GOMODCACHE)

# python must be on PATH for the execution of py_binary bazel targets, but
# the distribution we installed doesn't provide this alias
RUN ln -s /usr/bin/python3.8 /usr/bin/python

WORKDIR ${GOPATH}/src/github.com/envoyproxy/protoc-gen-validate

# python tooling for linting and uploading to PyPI
COPY requirements.txt .
RUN python3.8 -m easy_install pip \
  && python3.8 -m pip install -r requirements.txt

COPY . .

RUN make build

ENTRYPOINT ["make"]
CMD ["build"]