blob: fc086cff8024838b7847f496f94fa9e49fcf3aa3 [file] [log] [blame]
James E. King IIIf5f430d2018-06-08 03:37:55 +00001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12
13#
14# Apache Thrift Docker build environment for Ubuntu Bionic
James E. King III93ff9b02019-06-21 17:50:34 -040015# with some updated packages.
James E. King IIIf5f430d2018-06-08 03:37:55 +000016#
17
18FROM buildpack-deps:bionic-scm
19MAINTAINER Apache Thrift <dev@thrift.apache.org>
20ENV DEBIAN_FRONTEND noninteractive
21
22### Add apt repos
23
24RUN apt-get update && \
25 apt-get dist-upgrade -y && \
Allen Georgeb0d14132020-03-29 11:48:55 -040026 apt-get install -y --no-install-recommends --fix-missing \
James E. King IIIf5f430d2018-06-08 03:37:55 +000027 apt \
28 apt-transport-https \
29 apt-utils \
30 curl \
31 dirmngr \
32 software-properties-common \
33 wget
34
James E. King IIIf5f430d2018-06-08 03:37:55 +000035# Dart
36RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
37 curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > \
38 /etc/apt/sources.list.d/dart_stable.list
39
40# dotnet (netcore)
41RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.gpg && \
42 wget -q -O /etc/apt/sources.list.d/microsoft-prod.list https://packages.microsoft.com/config/ubuntu/18.04/prod.list && \
43 chown root:root /etc/apt/trusted.gpg.d/microsoft.gpg && \
44 chown root:root /etc/apt/sources.list.d/microsoft-prod.list
45
James E. King III93ff9b02019-06-21 17:50:34 -040046# erlang
47RUN wget -O- https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc | apt-key add - && \
48 echo "deb https://packages.erlang-solutions.com/ubuntu bionic contrib" | tee /etc/apt/sources.list.d/erlang.list
49
James E. King IIIf5f430d2018-06-08 03:37:55 +000050# node.js
51RUN curl -sL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
James E. King III93ff9b02019-06-21 17:50:34 -040052 echo "deb https://deb.nodesource.com/node_10.x bionic main" | tee /etc/apt/sources.list.d/nodesource.list
James E. King IIIf5f430d2018-06-08 03:37:55 +000053
54### install general dependencies
55RUN apt-get update && apt-get install -y --no-install-recommends \
56`# General dependencies` \
57 bash-completion \
58 bison \
59 build-essential \
60 clang \
61 cmake \
62 debhelper \
63 flex \
64 gdb \
Fokko Driesprong1686c872019-02-01 20:31:58 +010065 libasound2 \
66 libatk-bridge2.0-0 \
67 libgtk-3-0 \
James E. King IIIf5f430d2018-06-08 03:37:55 +000068 llvm \
69 ninja-build \
70 pkg-config \
James E. King IIIb1d63e72019-01-22 14:16:39 -050071 unzip \
James E. King IIIf5f430d2018-06-08 03:37:55 +000072 valgrind \
73 vim
74ENV PATH /usr/lib/llvm-6.0/bin:$PATH
75
James E. King IIIb1d63e72019-01-22 14:16:39 -050076# lib/as3 (ActionScript)
77RUN mkdir -p /usr/local/adobe/flex/4.6 && \
78 cd /usr/local/adobe/flex/4.6 && \
79 wget -q "http://download.macromedia.com/pub/flex/sdk/flex_sdk_4.6.zip" && \
80 unzip flex_sdk_4.6.zip
81ENV FLEX_HOME /usr/local/adobe/flex/4.6
82
James E. King IIIf5f430d2018-06-08 03:37:55 +000083RUN apt-get install -y --no-install-recommends \
84`# C++ dependencies` \
85 libboost-all-dev \
86 libevent-dev \
87 libssl-dev \
88 qt5-default \
89 qtbase5-dev \
90 qtbase5-dev-tools
91
James E. King III93ff9b02019-06-21 17:50:34 -040092ENV SBCL_VERSION 1.5.3
James E. King IIIf5f430d2018-06-08 03:37:55 +000093RUN \
94`# Common Lisp (sbcl) dependencies` \
95 curl --version && \
James E. King IIIabf3aa52019-01-04 17:21:02 -050096 curl -o sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2 -J -L https://sourceforge.net/projects/sbcl/files/sbcl/${SBCL_VERSION}/sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2/download?use_mirror=managedway# && \
James E. King IIIf5f430d2018-06-08 03:37:55 +000097 tar xjf sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2 && \
98 cd sbcl-${SBCL_VERSION}-x86-64-linux && \
99 ./install.sh && \
100 sbcl --version && \
101 cd .. && \
102 rm -rf sbcl*
103
James E. King III93ff9b02019-06-21 17:50:34 -0400104ENV D_VERSION 2.087.0
105ENV DMD_DEB dmd_2.087.0-0_amd64.deb
James E. King IIIf5f430d2018-06-08 03:37:55 +0000106RUN \
107`# D dependencies` \
108 wget -q http://downloads.dlang.org/releases/2.x/${D_VERSION}/${DMD_DEB} && \
109 dpkg --install ${DMD_DEB} && \
110 rm -f ${DMD_DEB} && \
111 mkdir -p /usr/include/dmd/druntime/import/deimos /usr/include/dmd/druntime/import/C && \
James E. King IIIabf3aa52019-01-04 17:21:02 -0500112 git clone -b 'v2.0.2+2.0.16' https://github.com/D-Programming-Deimos/libevent.git deimos-libevent-2.0 && \
113 mv deimos-libevent-2.0/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
114 mv deimos-libevent-2.0/C/* /usr/include/dmd/druntime/import/C/ && \
115 rm -rf deimos-libevent-2.0 && \
James E. King III75bac102018-12-30 16:20:12 -0500116 git clone -b 'v2.0.0+1.1.0h' https://github.com/D-Programming-Deimos/openssl.git deimos-openssl-1.1.0h && \
117 mv deimos-openssl-1.1.0h/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
118 mv deimos-openssl-1.1.0h/C/* /usr/include/dmd/druntime/import/C/ && \
119 rm -rf deimos-openssl-1.1.0h
James E. King IIIf5f430d2018-06-08 03:37:55 +0000120
aaronstgeorge-wf1ab156a2020-10-01 17:28:28 +0200121ENV DART_VERSION 2.7.2-1
James E. King IIIf5f430d2018-06-08 03:37:55 +0000122RUN apt-get install -y --no-install-recommends \
123 `# Dart dependencies` \
Brian Forbisc64389a2018-09-22 07:36:24 -0400124 dart=$DART_VERSION
James E. King IIIf5f430d2018-06-08 03:37:55 +0000125ENV PATH /usr/lib/dart/bin:$PATH
126
127RUN apt-get install -y --no-install-recommends \
128`# dotnet core dependencies` \
Jens Geyer526a1ac2021-02-13 13:58:09 +0100129 dotnet-sdk-5.0
James E. King IIIf5f430d2018-06-08 03:37:55 +0000130
131RUN apt-get install -y --no-install-recommends \
132`# Erlang dependencies` \
James E. King III93ff9b02019-06-21 17:50:34 -0400133 erlang && \
134 wget https://s3.amazonaws.com/rebar3/rebar3 -O /usr/bin/rebar3 && \
135 chmod 755 /usr/bin/rebar3 && \
136 rebar3 --version
James E. King IIIf5f430d2018-06-08 03:37:55 +0000137
138RUN apt-get install -y --no-install-recommends \
139`# GlibC dependencies` \
140 libglib2.0-dev
141
142# golang
Yuxuan 'fishy' Wanga2652362021-08-04 09:07:53 -0700143ENV GOLANG_VERSION 1.17
James E. King IIIf5f430d2018-06-08 03:37:55 +0000144ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
Yuxuan 'fishy' Wanga2652362021-08-04 09:07:53 -0700145ENV GOLANG_DOWNLOAD_SHA256 6bf89fc4f5ad763871cf7eac80a2d594492de7a818303283f1366a7f6a30372d
James E. King IIIf5f430d2018-06-08 03:37:55 +0000146RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz && \
147 echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - && \
148 tar -C /usr/local -xzf golang.tar.gz && \
149 ln -s /usr/local/go/bin/go /usr/local/bin && \
150 rm golang.tar.gz
151
152RUN apt-get install -y --no-install-recommends \
James E. King IIIf5f430d2018-06-08 03:37:55 +0000153`# Haxe dependencies` \
154 haxe \
155 neko \
156 neko-dev && \
157 haxelib setup --always /usr/share/haxe/lib && \
158 haxelib install --always hxcpp 2>&1 > /dev/null
159
160RUN apt-get install -y --no-install-recommends \
161`# Java dependencies` \
162 ant \
163 ant-optional \
Fokko Driesprong1686c872019-02-01 20:31:58 +0100164 maven \
165 openjdk-11-jdk-headless
James E. King IIIf5f430d2018-06-08 03:37:55 +0000166
167RUN apt-get install -y --no-install-recommends \
168`# Lua dependencies` \
169 lua5.2 \
170 lua5.2-dev
171# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
172# lua5.3 does not install alternatives!
173# need to update our luasocket code, lua doesn't have luaL_openlib any more
174
175RUN apt-get install -y --no-install-recommends \
176`# Node.js dependencies` \
177 nodejs
178
Brian Forbisb5d6ea32018-08-25 23:39:29 -0400179# Test dependencies for running puppeteer
180RUN apt-get install -y --no-install-recommends \
181`# JS dependencies` \
Yuxuan 'fishy' Wang0f735582021-04-28 08:33:36 -0700182 libxss1 \
183 libxtst6
Brian Forbisb5d6ea32018-08-25 23:39:29 -0400184
James E. King IIIf5f430d2018-06-08 03:37:55 +0000185RUN apt-get install -y --no-install-recommends \
186`# OCaml dependencies` \
187 ocaml \
188 opam && \
189 opam init --yes && \
190 opam install --yes oasis
191
192RUN apt-get install -y --no-install-recommends \
193`# Perl dependencies` \
194 libbit-vector-perl \
195 libclass-accessor-class-perl \
196 libcrypt-ssleay-perl \
197 libio-socket-ssl-perl \
Kengo Sekicb4c31a2019-12-26 14:34:57 +0900198 libnet-ssleay-perl \
199 libtest-exception-perl
James E. King IIIf5f430d2018-06-08 03:37:55 +0000200
201RUN apt-get install -y --no-install-recommends \
202`# Php dependencies` \
203 php \
204 php-cli \
205 php-dev \
James E. King IIIe53d23c2019-02-10 11:13:23 -0500206 php-json \
James E. King IIIf5f430d2018-06-08 03:37:55 +0000207 php-pear \
208 re2c \
209 composer
210
211RUN apt-get install -y --no-install-recommends \
212`# Python dependencies` \
213 python-all \
214 python-all-dbg \
215 python-all-dev \
216 python-ipaddress \
217 python-pip \
218 python-setuptools \
219 python-six \
220 python-tornado \
221 python-twisted \
222 python-wheel \
223 python-zope.interface && \
224 pip install --upgrade backports.ssl_match_hostname
225
226RUN apt-get install -y --no-install-recommends \
227`# Python3 dependencies` \
228 python3-all \
229 python3-all-dbg \
230 python3-all-dev \
231 python3-pip \
232 python3-setuptools \
233 python3-six \
234 python3-tornado \
235 python3-twisted \
236 python3-wheel \
237 python3-zope.interface
238
239RUN apt-get install -y --no-install-recommends \
240`# Ruby dependencies` \
241 ruby \
242 ruby-dev \
243 ruby-bundler
244
Danny Browning181d9002019-04-15 09:50:24 -0600245# Rust dependencies
Allen Georgeb0d14132020-03-29 11:48:55 -0400246RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.40.0 -y
James E. King III93ff9b02019-06-21 17:50:34 -0400247ENV PATH /root/.cargo/bin:$PATH
James E. King IIIf5f430d2018-06-08 03:37:55 +0000248
James E. King IIIa3a7c6c2018-12-31 17:17:34 -0500249# Swift on Linux for cross tests
250RUN cd / && \
Jano Svitok2e115772020-03-06 09:01:43 +0100251 wget --quiet https://swift.org/builds/swift-5.1.4-release/ubuntu1804/swift-5.1.4-RELEASE/swift-5.1.4-RELEASE-ubuntu18.04.tar.gz && \
252 tar xf swift-5.1.4-RELEASE-ubuntu18.04.tar.gz --strip-components=1 && \
253 rm swift-5.1.4-RELEASE-ubuntu18.04.tar.gz && \
James E. King IIIa3a7c6c2018-12-31 17:17:34 -0500254 swift --version
255
ubuntu323f0322021-05-31 19:08:05 +0530256# Locale(s) for cpp unit tests
257RUN apt-get install -y --no-install-recommends \
258`# Locale dependencies` \
259 locales && \
260 locale-gen en_US.UTF-8 && \
ubuntuad76a182021-06-07 08:21:05 +0530261 locale-gen de_DE.UTF-8 && \
ubuntu323f0322021-05-31 19:08:05 +0530262 update-locale
263
James E. King IIIf5f430d2018-06-08 03:37:55 +0000264# cppcheck-1.82 has a nasty cpp parser bug, so we're using something newer
265RUN apt-get install -y --no-install-recommends \
266`# Static Code Analysis dependencies` \
267 cppcheck \
268 sloccount && \
269 pip install flake8 && \
270 wget -q "https://launchpad.net/ubuntu/+source/cppcheck/1.83-2/+build/14874703/+files/cppcheck_1.83-2_amd64.deb" && \
271 dpkg -i cppcheck_1.83-2_amd64.deb && \
272 rm cppcheck_1.83-2_amd64.deb
273
274# Clean up
275RUN rm -rf /var/cache/apt/* && \
276 rm -rf /var/lib/apt/lists/* && \
277 rm -rf /tmp/* && \
278 rm -rf /var/tmp/*
279
280ENV THRIFT_ROOT /thrift
281RUN mkdir -p $THRIFT_ROOT/src
282COPY Dockerfile $THRIFT_ROOT/
283WORKDIR $THRIFT_ROOT/src