blob: 45bef96d6a91e06bc29b81dd7f7a124c41fd51b8 [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 D_VERSION 2.087.0
93ENV DMD_DEB dmd_2.087.0-0_amd64.deb
94RUN \
95`# D dependencies` \
96 wget -q http://downloads.dlang.org/releases/2.x/${D_VERSION}/${DMD_DEB} && \
97 dpkg --install ${DMD_DEB} && \
98 rm -f ${DMD_DEB} && \
99 mkdir -p /usr/include/dmd/druntime/import/deimos /usr/include/dmd/druntime/import/C && \
100 git clone -b 'v2.0.2+2.0.16' https://github.com/D-Programming-Deimos/libevent.git deimos-libevent-2.0 && \
101 mv deimos-libevent-2.0/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
102 mv deimos-libevent-2.0/C/* /usr/include/dmd/druntime/import/C/ && \
103 rm -rf deimos-libevent-2.0 && \
104 git clone -b 'v2.0.0+1.1.0h' https://github.com/D-Programming-Deimos/openssl.git deimos-openssl-1.1.0h && \
105 mv deimos-openssl-1.1.0h/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
106 mv deimos-openssl-1.1.0h/C/* /usr/include/dmd/druntime/import/C/ && \
107 rm -rf deimos-openssl-1.1.0h
108
aaronstgeorge-wf1ab156a2020-10-01 17:28:28 +0200109ENV DART_VERSION 2.7.2-1
James E. King III90a04462019-07-23 22:50:28 -0400110RUN apt-get install -y --no-install-recommends \
Mario Emmenlauer96ed7272021-08-30 10:54:39 +0200111`# Dart dependencies` \
James E. King III90a04462019-07-23 22:50:28 -0400112 dart=$DART_VERSION
113ENV PATH /usr/lib/dart/bin:$PATH
114
115RUN apt-get install -y --no-install-recommends \
116`# dotnet core dependencies` \
Jens Geyer4c7b9fd2021-12-04 22:48:37 +0100117 dotnet-sdk-6.0 \
118 dotnet-runtime-6.0 \
119 aspnetcore-runtime-6.0 \
120 dotnet-apphost-pack-6.0
James E. King III90a04462019-07-23 22:50:28 -0400121
122RUN apt-get install -y --no-install-recommends \
123`# Erlang dependencies` \
124 erlang && \
125 wget https://s3.amazonaws.com/rebar3/rebar3 -O /usr/bin/rebar3 && \
126 chmod 755 /usr/bin/rebar3 && \
127 rebar3 --version
128
129RUN apt-get install -y --no-install-recommends \
130`# GlibC dependencies` \
131 libglib2.0-dev
132
133# golang
Yuxuan 'fishy' Wangbbc7c5f2022-01-10 11:44:23 -0800134ENV GOLANG_VERSION 1.17.6
135ENV GOLANG_DOWNLOAD_URL https://go.dev/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
136ENV GOLANG_DOWNLOAD_SHA256 231654bbf2dab3d86c1619ce799e77b03d96f9b50770297c8f4dff8836fc8ca2
James E. King III90a04462019-07-23 22:50:28 -0400137RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz && \
138 echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - && \
139 tar -C /usr/local -xzf golang.tar.gz && \
140 ln -s /usr/local/go/bin/go /usr/local/bin && \
141 rm golang.tar.gz
142
143RUN apt-get install -y --no-install-recommends \
James E. King III90a04462019-07-23 22:50:28 -0400144`# Haxe dependencies` \
145 haxe \
146 neko \
147 neko-dev && \
148 haxelib setup --always /usr/share/haxe/lib && \
149 haxelib install --always hxcpp 2>&1 > /dev/null
150
151RUN apt-get install -y --no-install-recommends \
152`# Java dependencies` \
153 ant \
154 ant-optional \
155 maven \
156 openjdk-11-jdk-headless
157
158RUN apt-get install -y --no-install-recommends \
159`# Lua dependencies` \
160 lua5.2 \
161 lua5.2-dev
162# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
163# lua5.3 does not install alternatives!
164# need to update our luasocket code, lua doesn't have luaL_openlib any more
165
166RUN apt-get install -y --no-install-recommends \
167`# Node.js dependencies` \
168 nodejs
169
170# Test dependencies for running puppeteer
171RUN apt-get install -y --no-install-recommends \
172`# JS dependencies` \
Yuxuan 'fishy' Wang0f735582021-04-28 08:33:36 -0700173 libxss1 \
174 libxtst6
James E. King III90a04462019-07-23 22:50:28 -0400175
176# does not work on disco?
177# RUN apt-get install -y --no-install-recommends \
178# `# OCaml dependencies` \
179# ocaml \
180# opam && \
181# opam init --yes && \
182# opam install --yes oasis
183
184RUN apt-get install -y --no-install-recommends \
185`# Perl dependencies` \
186 libbit-vector-perl \
187 libclass-accessor-class-perl \
188 libcrypt-ssleay-perl \
189 libio-socket-ssl-perl \
Kengo Sekicb4c31a2019-12-26 14:34:57 +0900190 libnet-ssleay-perl \
191 libtest-exception-perl
James E. King III90a04462019-07-23 22:50:28 -0400192
193RUN apt-get install -y --no-install-recommends \
194`# Php dependencies` \
195 php \
196 php-cli \
197 php-dev \
198 php-json \
199 php-pear \
200 re2c \
201 composer
202
203RUN apt-get install -y --no-install-recommends \
204`# Python dependencies` \
205 python-all \
206 python-all-dbg \
207 python-all-dev \
208 python-ipaddress \
209 python-pip \
210 python-setuptools \
211 python-six \
212 python-tornado \
213 python-twisted \
214 python-wheel \
215 python-zope.interface && \
216 pip install --upgrade backports.ssl_match_hostname
217
218RUN apt-get install -y --no-install-recommends \
219`# Python3 dependencies` \
220 python3-all \
221 python3-all-dbg \
222 python3-all-dev \
223 python3-pip \
224 python3-setuptools \
225 python3-six \
226 python3-tornado \
227 python3-twisted \
228 python3-wheel \
229 python3-zope.interface
230
231RUN apt-get install -y --no-install-recommends \
232`# Ruby dependencies` \
233 ruby \
234 ruby-dev \
235 ruby-bundler
236
237# Rust dependencies
Allen Georgeb0d14132020-03-29 11:48:55 -0400238RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.40.0 -y
James E. King III90a04462019-07-23 22:50:28 -0400239ENV PATH /root/.cargo/bin:$PATH
240
241# Swift on Linux for cross tests
242# does not work on disco
243# RUN cd / && \
244# 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 && \
245# tar xf swift-4.2.1-RELEASE-ubuntu18.04.tar.gz --strip-components=1 && \
246# rm swift-4.2.1-RELEASE-ubuntu18.04.tar.gz && \
247# swift --version
248
ubuntu323f0322021-05-31 19:08:05 +0530249# Locale(s) for cpp unit tests
250RUN apt-get install -y --no-install-recommends \
251`# Locale dependencies` \
252 locales && \
253 locale-gen en_US.UTF-8 && \
ubuntuad76a182021-06-07 08:21:05 +0530254 locale-gen de_DE.UTF-8 && \
ubuntu323f0322021-05-31 19:08:05 +0530255 update-locale
256
James E. King III90a04462019-07-23 22:50:28 -0400257# cppcheck-1.82 has a nasty cpp parser bug, so we're using something newer
258# don't need this on disco, nobody uses it
259# RUN apt-get install -y --no-install-recommends \
260# `# Static Code Analysis dependencies` \
261# cppcheck \
262# sloccount && \
263# pip install flake8 && \
264# wget -q "https://launchpad.net/ubuntu/+source/cppcheck/1.83-2/+build/14874703/+files/cppcheck_1.83-2_amd64.deb" && \
265# dpkg -i cppcheck_1.83-2_amd64.deb && \
266# rm cppcheck_1.83-2_amd64.deb
267
268# Clean up
269RUN rm -rf /var/cache/apt/* && \
270 rm -rf /var/lib/apt/lists/* && \
271 rm -rf /tmp/* && \
272 rm -rf /var/tmp/*
273
274ENV THRIFT_ROOT /thrift
275RUN mkdir -p $THRIFT_ROOT/src
276COPY Dockerfile $THRIFT_ROOT/
277WORKDIR $THRIFT_ROOT/src