forked from bufbuild/protoc-gen-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
82 lines (68 loc) · 2.39 KB
/
Dockerfile
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
81
82
FROM ubuntu:xenial
# apt packages
ENV INSTALL_DEPS \
bazel \
ca-certificates \
git \
make \
software-properties-common \
unzip \
wget \
maven \
patch \
python3.8 \
python3.8-distutils \
python3-setuptools
RUN apt-get update \
&& apt-get install -y -q --no-install-recommends curl openjdk-8-jdk \
&& echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
&& curl https://bazel.build/bazel-release.pub.gpg | apt-key add - \
# software-properties-common allows adding PPA (Personal Package Archive) repositories
&& apt install -y -q --no-install-recommends software-properties-common \
# deadsnakes is a PPA with newer releases of python than default Ubuntu repositories
&& add-apt-repository ppa:deadsnakes/ppa \
&& apt-get update \
&& apt-get install -y -q --no-install-recommends ${INSTALL_DEPS} \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# protoc
ENV PROTOC_VER=3.15.5
ENV PROTOC_REL=protoc-"${PROTOC_VER}"-linux-x86_64.zip
RUN wget https://github.com/google/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
# go
ENV GOROOT /usr/local/go
ENV GOPATH /go
ENV PATH $GOPATH/bin:$GOROOT/bin:$PATH
ENV GORELEASE go1.14.7.linux-amd64.tar.gz
RUN 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_PKG "google.golang.org/protobuf/cmd/protoc-gen-go"
ENV PGG_PATH "${GOPATH}/src/${PGG_PKG}"
ENV PGG_VER=v1.26.0
RUN go get -d ${PGG_PKG} \
&& cd ${PGG_PATH} \
&& git checkout ${PGG_VER} \
&& go install \
&& cd - \
&& rm -rf ${PGG_PATH}
# deps
RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
# buildozer
RUN go get github.com/bazelbuild/buildtools/buildozer
WORKDIR ${GOPATH}/src/github.com/TheThingsIndustries/protoc-gen-validate
COPY . .
# 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
# python tooling for linting and uploading to PyPI
RUN python3.8 -m easy_install pip \
&& python3.8 -m pip install -r requirements.txt
RUN make build
ENTRYPOINT ["make"]
CMD ["build"]