This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Dockerfile
183 lines (159 loc) · 5.95 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
FROM ubuntu:16.04
# Release parameters
ENV GOOGLEAPIS_HASH e26e1839a45445d13cd45b1be3b1523defb72fee
ENV GAPIC_GENERATOR_HASH v2.4.4
# Define version number below. The ARTMAN_VERSION line is parsed by
# .circleci/config.yml and setup.py, please keep the format.
ENV ARTMAN_VERSION 2.4.4
ENV DEBIAN_FRONTEND noninteractive
# Set the locale
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL C
# OpenJDK repository
RUN apt-get update \
&& apt-get install -y --no-install-recommends software-properties-common \
&& rm -rf /var/lib/apt/lists/* \
&& add-apt-repository ppa:openjdk-r/ppa
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
git \
# debugging
vim \
# openssh-client is needed for CircleCI git checkout
openssh-client \
# runtime packages
unzip \
php \
python3-pip \
# Java
openjdk-8-jdk-headless \
# Ruby
ruby \
ruby-dev \
# Required to build grpc_php_plugin
autoconf \
autogen \
libtool \
autotools-dev \
automake \
make \
g++ \
# Used to create Python doc
pandoc \
# .NET dependencies
libc6 \
libcurl3 \
libgcc1 \
libgssapi-krb5-2 \
liblttng-ust0 \
libssl1.0.0 \
libstdc++6 \
libunwind8 \
libuuid1 \
zlib1g \
xz-utils \
&& rm -rf /var/lib/apt/lists/*
# Download and unpack Node.js v10
RUN mkdir -p /opt \
&& curl -L https://nodejs.org/dist/v10.16.0/node-v10.16.0-linux-x64.tar.xz -o /opt/node-v10.16.0-linux-x64.tar.xz \
&& tar -C /opt -xJf /opt/node-v10.16.0-linux-x64.tar.xz \
&& rm -f /opt/node-v10.16.0-linux-x64.tar.xz
ENV PATH /opt/node-v10.16.0-linux-x64/bin:$PATH
# Install google-gax for Node.js
RUN npm install -g google-gax@^1.2.1
# Run the compileProtos script for the first time to download runtime dependencies; ignore exit code
RUN compileProtos || true
# Install all required protoc versions, and install protobuf Python package.
ADD install_protoc.sh /
RUN bash install_protoc.sh
# Install grpc_csharp_plugin
RUN curl -L https://www.nuget.org/api/v2/package/Grpc.Tools/1.17.1 -o temp.zip \
&& unzip -p temp.zip tools/linux_x64/grpc_csharp_plugin > /usr/local/bin/grpc_csharp_plugin \
&& chmod +x /usr/local/bin/grpc_csharp_plugin \
&& rm temp.zip
# Setup JAVA_HOME, this is useful for docker commandline
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64/
RUN export JAVA_HOME
# Install Go.
RUN mkdir -p /golang \
&& cd /golang \
&& curl -L https://golang.org/dl/go1.14.6.linux-amd64.tar.gz > go.tar.gz \
&& (echo '5c566ddc2e0bcfc25c26a5dc44a440fcc0177f7350c1f01952b34d5989a0d287 go.tar.gz' | sha256sum -c) \
&& tar xzf go.tar.gz \
&& rm go.tar.gz \
&& cd /
ENV PATH $PATH:/golang/go/bin
# Download the go protobuf support.
ENV GOPATH /go
ENV PATH $GOPATH/bin:$PATH
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" "$GOPATH/pkg" \
&& chmod -R 777 "$GOPATH" \
&& go get -u github.com/golang/protobuf/protoc-gen-go \
&& go clean -cache -testcache -modcache
# Setup tools for codegen of Ruby
RUN gem install rake --no-ri --no-rdoc \
&& gem install rubocop --version '= 0.39.0' --no-ri --no-rdoc \
&& gem install bundler --version '= 1.12.1' --no-ri --no-rdoc \
&& gem install rake --version '= 10.5.0' --no-ri --no-rdoc \
&& gem install grpc-tools --version '= 1.30.2' --no-ri --no-rdoc
# Install grpc_php_plugin
RUN git clone -b v1.17.1 --recurse-submodules --depth=1 https://github.com/grpc/grpc.git /temp/grpc \
&& cd /temp/grpc \
&& make -j $(nproc) grpc_php_plugin \
&& mv ./bins/opt/grpc_php_plugin /usr/local/bin/ \
&& cd / \
&& rm -r /temp/grpc
# Install PHP formatting tools
RUN curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.9.1/php-cs-fixer.phar -o /usr/local/bin/php-cs-fixer \
&& chmod a+x /usr/local/bin/php-cs-fixer \
&& cd /
RUN curl -L https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar -o /usr/local/bin/phpcbf \
&& chmod a+x /usr/local/bin/phpcbf \
&& cd /
# Used to add docstrings to the Python protoc output.
RUN pip3 install git+https://github.com/googleapis/protoc-docs-plugin.git@proto3-optional#egg=protoc-docs-plugin
# Install .NET Core SDK
ENV DOTNET_SDK_VERSION 1.0.4
ENV DOTNET_SDK_DOWNLOAD_URL https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-dev-ubuntu.16.04-x64.$DOTNET_SDK_VERSION.tar.gz
RUN curl -SL $DOTNET_SDK_DOWNLOAD_URL --output dotnet.tar.gz \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
&& rm dotnet.tar.gz \
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
# Install googleapis.
RUN git clone --single-branch https://github.com/googleapis/googleapis \
&& cd googleapis \
&& git checkout $GOOGLEAPIS_HASH \
&& cd .. \
&& rm -rf /googleapis/.git/
# Install toolkit.
RUN git clone --single-branch https://github.com/googleapis/gapic-generator toolkit \
&& cd toolkit/ \
&& git checkout $GAPIC_GENERATOR_HASH \
&& ./gradlew fatJar createToolPaths \
&& cd .. \
&& rm -rf /toolkit/.git/
ENV TOOLKIT_HOME /toolkit
# Setup git config used by github commit pushing.
RUN git config --global user.email [email protected] \
&& git config --global user.name "Google API Publisher"
# Setup artman user config
# Note: This is somewhat brittle as it relies on a specific path
# outside of or inside Docker.
#
# This should probably be fixed to have the smoke test itself provide
# the configuration.
# TODO (lukesneeringer): Fix this.
RUN mkdir -p /root/
ADD artman-user-config-in-docker.yaml /root/.artman/config.yaml
# Fix the setuptools version incompatibility with google-auth v1.7.0
RUN pip install --upgrade pip
RUN pip install --upgrade setuptools
# Install artman.
ADD . /artman
ARG install_artman_from_source=false
# installing master version of plugin
RUN pip3 install git+https://github.com/googleapis/protoc-java-resource-names-plugin.git#egg=protoc-java-resource-names-plugin
RUN if [ "$install_artman_from_source" = true ]; then pip3 install -e /artman; else pip3 install googleapis-artman==$ARTMAN_VERSION; rm -r /artman; fi