blob: 9d6996d3f08294168a202728945629160cc87fe3 [file] [log] [blame]
James E. King III90a04462019-07-23 22:50:28 -04001# 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 Disco
15# with some updated packages.
16#
17
18FROM buildpack-deps:disco-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 && \
26 apt-get install -y --no-install-recommends \
27 apt \
28 apt-transport-https \
29 apt-utils \
30 curl \
31 dirmngr \
32 software-properties-common \
33 wget
34
35# 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
46# 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 disco contrib" | tee /etc/apt/sources.list.d/erlang.list
49
50# node.js
51RUN curl -sL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
52 echo "deb https://deb.nodesource.com/node_10.x disco main" | tee /etc/apt/sources.list.d/nodesource.list
53
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 \
65 libasound2 \
66 libatk-bridge2.0-0 \
67 libgtk-3-0 \
68 llvm \
69 ninja-build \
70 pkg-config \
71 unzip \
72 valgrind \
73 vim
74ENV PATH /usr/lib/llvm-6.0/bin:$PATH
75
76# 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
83RUN 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 III90a04462019-07-23 22:50:28 -040092ENV SBCL_VERSION 1.5.3
93RUN \
94`# Common Lisp (sbcl) dependencies` \
95 curl --version && \
96 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# && \
97 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
104ENV D_VERSION 2.087.0
105ENV DMD_DEB dmd_2.087.0-0_amd64.deb
106RUN \
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 && \
112 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 && \
116 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
120
aaronstgeorge-wf1ab156a2020-10-01 17:28:28 +0200121ENV DART_VERSION 2.7.2-1
James E. King III90a04462019-07-23 22:50:28 -0400122RUN apt-get install -y --no-install-recommends \
Mario Emmenlauer96ed7272021-08-30 10:54:39 +0200123`# Dart dependencies` \
James E. King III90a04462019-07-23 22:50:28 -0400124 dart=$DART_VERSION
125ENV PATH /usr/lib/dart/bin:$PATH
126
127RUN apt-get install -y --no-install-recommends \
128`# dotnet core dependencies` \
Jens Geyer4c7b9fd2021-12-04 22:48:37 +0100129 dotnet-sdk-6.0 \
130 dotnet-runtime-6.0 \
131 aspnetcore-runtime-6.0 \
132 dotnet-apphost-pack-6.0
James E. King III90a04462019-07-23 22:50:28 -0400133
134RUN apt-get install -y --no-install-recommends \
135`# Erlang dependencies` \
136 erlang && \
137 wget https://s3.amazonaws.com/rebar3/rebar3 -O /usr/bin/rebar3 && \
138 chmod 755 /usr/bin/rebar3 && \
139 rebar3 --version
140
141RUN apt-get install -y --no-install-recommends \
142`# GlibC dependencies` \
143 libglib2.0-dev
144
145# golang
Yuxuan 'fishy' Wanga2652362021-08-04 09:07:53 -0700146ENV GOLANG_VERSION 1.17
James E. King III90a04462019-07-23 22:50:28 -0400147ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
Yuxuan 'fishy' Wanga2652362021-08-04 09:07:53 -0700148ENV GOLANG_DOWNLOAD_SHA256 6bf89fc4f5ad763871cf7eac80a2d594492de7a818303283f1366a7f6a30372d
James E. King III90a04462019-07-23 22:50:28 -0400149RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz && \
150 echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - && \
151 tar -C /usr/local -xzf golang.tar.gz && \
152 ln -s /usr/local/go/bin/go /usr/local/bin && \
153 rm golang.tar.gz
154
155RUN apt-get install -y --no-install-recommends \
James E. King III90a04462019-07-23 22:50:28 -0400156`# Haxe dependencies` \
157 haxe \
158 neko \
159 neko-dev && \
160 haxelib setup --always /usr/share/haxe/lib && \
161 haxelib install --always hxcpp 2>&1 > /dev/null
162
163RUN apt-get install -y --no-install-recommends \
164`# Java dependencies` \
165 ant \
166 ant-optional \
167 maven \
168 openjdk-11-jdk-headless
169
170RUN apt-get install -y --no-install-recommends \
171`# Lua dependencies` \
172 lua5.2 \
173 lua5.2-dev
174# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
175# lua5.3 does not install alternatives!
176# need to update our luasocket code, lua doesn't have luaL_openlib any more
177
178RUN apt-get install -y --no-install-recommends \
179`# Node.js dependencies` \
180 nodejs
181
182# Test dependencies for running puppeteer
183RUN apt-get install -y --no-install-recommends \
184`# JS dependencies` \
Yuxuan 'fishy' Wang0f735582021-04-28 08:33:36 -0700185 libxss1 \
186 libxtst6
James E. King III90a04462019-07-23 22:50:28 -0400187
188# does not work on disco?
189# RUN apt-get install -y --no-install-recommends \
190# `# OCaml dependencies` \
191# ocaml \
192# opam && \
193# opam init --yes && \
194# opam install --yes oasis
195
196RUN apt-get install -y --no-install-recommends \
197`# Perl dependencies` \
198 libbit-vector-perl \
199 libclass-accessor-class-perl \
200 libcrypt-ssleay-perl \
201 libio-socket-ssl-perl \
Kengo Sekicb4c31a2019-12-26 14:34:57 +0900202 libnet-ssleay-perl \
203 libtest-exception-perl
James E. King III90a04462019-07-23 22:50:28 -0400204
205RUN apt-get install -y --no-install-recommends \
206`# Php dependencies` \
207 php \
208 php-cli \
209 php-dev \
210 php-json \
211 php-pear \
212 re2c \
213 composer
214
215RUN apt-get install -y --no-install-recommends \
216`# Python dependencies` \
217 python-all \
218 python-all-dbg \
219 python-all-dev \
220 python-ipaddress \
221 python-pip \
222 python-setuptools \
223 python-six \
224 python-tornado \
225 python-twisted \
226 python-wheel \
227 python-zope.interface && \
228 pip install --upgrade backports.ssl_match_hostname
229
230RUN apt-get install -y --no-install-recommends \
231`# Python3 dependencies` \
232 python3-all \
233 python3-all-dbg \
234 python3-all-dev \
235 python3-pip \
236 python3-setuptools \
237 python3-six \
238 python3-tornado \
239 python3-twisted \
240 python3-wheel \
241 python3-zope.interface
242
243RUN apt-get install -y --no-install-recommends \
244`# Ruby dependencies` \
245 ruby \
246 ruby-dev \
247 ruby-bundler
248
249# Rust dependencies
Allen Georgeb0d14132020-03-29 11:48:55 -0400250RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.40.0 -y
James E. King III90a04462019-07-23 22:50:28 -0400251ENV PATH /root/.cargo/bin:$PATH
252
253# Swift on Linux for cross tests
254# does not work on disco
255# RUN cd / && \
256# wget --quiet https://swift.org/builds/swift-4.2.1-release/ubuntu1804/swift-4.2.1-RELEASE/swift-4.2.1-RELEASE-ubuntu18.04.tar.gz && \
257# tar xf swift-4.2.1-RELEASE-ubuntu18.04.tar.gz --strip-components=1 && \
258# rm swift-4.2.1-RELEASE-ubuntu18.04.tar.gz && \
259# swift --version
260
ubuntu323f0322021-05-31 19:08:05 +0530261# Locale(s) for cpp unit tests
262RUN apt-get install -y --no-install-recommends \
263`# Locale dependencies` \
264 locales && \
265 locale-gen en_US.UTF-8 && \
ubuntuad76a182021-06-07 08:21:05 +0530266 locale-gen de_DE.UTF-8 && \
ubuntu323f0322021-05-31 19:08:05 +0530267 update-locale
268
James E. King III90a04462019-07-23 22:50:28 -0400269# cppcheck-1.82 has a nasty cpp parser bug, so we're using something newer
270# don't need this on disco, nobody uses it
271# RUN apt-get install -y --no-install-recommends \
272# `# Static Code Analysis dependencies` \
273# cppcheck \
274# sloccount && \
275# pip install flake8 && \
276# wget -q "https://launchpad.net/ubuntu/+source/cppcheck/1.83-2/+build/14874703/+files/cppcheck_1.83-2_amd64.deb" && \
277# dpkg -i cppcheck_1.83-2_amd64.deb && \
278# rm cppcheck_1.83-2_amd64.deb
279
280# Clean up
281RUN rm -rf /var/cache/apt/* && \
282 rm -rf /var/lib/apt/lists/* && \
283 rm -rf /tmp/* && \
284 rm -rf /var/tmp/*
285
286ENV THRIFT_ROOT /thrift
287RUN mkdir -p $THRIFT_ROOT/src
288COPY Dockerfile $THRIFT_ROOT/
289WORKDIR $THRIFT_ROOT/src