blob: 8f66a5646e76ff509dd6f0ace543f3bd59c83453 [file] [log] [blame]
Jiayu Liu564b2872022-10-12 11:42:38 +08001# 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 Jammy
15# with some updated packages.
16#
17
18FROM buildpack-deps:jammy-scm
19LABEL MAINTAINER="Apache Thrift <dev@thrift.apache.org>"
20ENV DEBIAN_FRONTEND=noninteractive
21
22### Add apt repos
23
24RUN apt-get update -yq && \
25 apt-get dist-upgrade -y && \
26 apt-get install -y --no-install-recommends --fix-missing \
27 apt \
28 apt-transport-https \
29 apt-utils \
30 curl \
31 dirmngr \
32 software-properties-common \
33 wget
34
Thomas67685842024-03-04 21:32:26 +090035# Create a user
36ARG user=build
37ARG group=build
38ARG uid=1000
39ARG gid=1000
40
41RUN apt-get install -y --no-install-recommends sudo && \
42 echo "Running with: UID: ${uid}, User: ${user}, GID: ${gid}, Group: ${group}" && \
Thomas5f563e92024-03-06 23:26:22 +090043 if [ -z `cat /etc/group | grep "${group}:"` ] && [ -z `cat /etc/group | grep ":${gid}:"` ]; then addgroup --gid ${gid} ${group}; fi && \
44 if [ -z `cat /etc/passwd | grep "${user}:"` ] && [ -z `cat /etc/passwd | grep ":${uid}:"` ]; then adduser --uid ${uid} --gid ${gid} --shell /bin/bash ${user} --disabled-password -q --gecos ""; fi && \
45 echo "${user} ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \
46 mkdir -p /home/${user} && \
47 chown -R ${user}:${group} /home/${user}
Thomas67685842024-03-04 21:32:26 +090048
Jiayu Liu564b2872022-10-12 11:42:38 +080049# Dart
50RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
51 curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > \
52 /etc/apt/sources.list.d/dart_stable.list
53
Jiayu Liu564b2872022-10-12 11:42:38 +080054# node.js
55RUN curl -sL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
56 echo "deb https://deb.nodesource.com/node_16.x focal main" | tee /etc/apt/sources.list.d/nodesource.list
57
58### install general dependencies
59RUN apt-get update -yq && \
60 apt-get install -y --no-install-recommends \
61 `# General dependencies` \
62 bash-completion \
63 bison \
64 build-essential \
65 clang \
66 cmake \
67 debhelper \
68 flex \
69 gdb \
70 libasound2 \
71 libatk-bridge2.0-0 \
72 libgtk-3-0 \
73 llvm \
74 ninja-build \
75 pkg-config \
76 unzip \
77 valgrind \
78 vim
79ENV PATH /usr/lib/llvm-6.0/bin:$PATH
80
81# lib/as3 (ActionScript)
82RUN mkdir -p /usr/local/adobe/flex/4.6 && \
83 cd /usr/local/adobe/flex/4.6 && \
84 wget -q "http://download.macromedia.com/pub/flex/sdk/flex_sdk_4.6.zip" && \
85 unzip flex_sdk_4.6.zip
86ENV FLEX_HOME /usr/local/adobe/flex/4.6
87
88# TODO: "apt-get install" without "apt-get update" in the same "RUN" step can cause cache issues if modified later.
89# See https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#run
90RUN apt-get install -y --no-install-recommends \
91 `# C++ dependencies` \
92 libboost-all-dev \
93 libevent-dev \
94 libssl-dev \
Jiayu Liu564b2872022-10-12 11:42:38 +080095 qtbase5-dev \
96 qtbase5-dev-tools
97
98ENV SBCL_VERSION 1.5.3
99RUN \
100 `# Common Lisp (sbcl) dependencies` \
101 curl --version && \
102 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# && \
103 tar xjf sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2 && \
104 cd sbcl-${SBCL_VERSION}-x86-64-linux && \
105 ./install.sh && \
106 sbcl --version && \
107 cd .. && \
108 rm -rf sbcl*
109
110ENV D_VERSION 2.087.0
111ENV DMD_DEB dmd_2.087.0-0_amd64.deb
112RUN \
113 `# D dependencies` \
114 wget -q http://downloads.dlang.org/releases/2.x/${D_VERSION}/${DMD_DEB} && \
115 dpkg --install ${DMD_DEB} && \
116 rm -f ${DMD_DEB} && \
117 mkdir -p /usr/include/dmd/druntime/import/deimos /usr/include/dmd/druntime/import/C && \
118 git clone -b 'v2.0.2+2.0.16' https://github.com/D-Programming-Deimos/libevent.git deimos-libevent-2.0 && \
119 mv deimos-libevent-2.0/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
120 mv deimos-libevent-2.0/C/* /usr/include/dmd/druntime/import/C/ && \
121 rm -rf deimos-libevent-2.0 && \
122 git clone -b 'v2.0.0+1.1.0h' https://github.com/D-Programming-Deimos/openssl.git deimos-openssl-1.1.0h && \
123 mv deimos-openssl-1.1.0h/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
124 mv deimos-openssl-1.1.0h/C/* /usr/include/dmd/druntime/import/C/ && \
125 rm -rf deimos-openssl-1.1.0h
126
127ENV DART_VERSION 2.7.2-1
128RUN apt-get install -y --no-install-recommends \
129 `# Dart dependencies` \
130 dart=$DART_VERSION
131ENV PATH /usr/lib/dart/bin:$PATH
132
Jens Geyerb4b4eb72025-02-11 22:58:04 +0100133RUN add-apt-repository ppa:dotnet/backports
Jiayu Liu564b2872022-10-12 11:42:38 +0800134RUN apt-get install -y --no-install-recommends \
135 `# dotnet core dependencies` \
Jens Geyere26b4a82024-11-12 23:53:04 +0100136 dotnet-sdk-9.0 \
137 dotnet-runtime-9.0 \
138 aspnetcore-runtime-9.0 \
139 dotnet-apphost-pack-9.0
Jiayu Liu564b2872022-10-12 11:42:38 +0800140
141# Erlang dependencies
Thomasc890ed42024-02-25 19:58:30 +0900142ARG ERLANG_OTP_VERSION=25.3.2.9
Jiayu Liu564b2872022-10-12 11:42:38 +0800143ARG ERLANG_REBAR_VERSION=3.18.0
144RUN apt-get update && apt-get install -y --no-install-recommends libncurses5-dev && \
145 curl -ssLo /usr/local/bin/kerl https://raw.githubusercontent.com/kerl/kerl/master/kerl && chmod +x /usr/local/bin/kerl && \
146 kerl build $ERLANG_OTP_VERSION && kerl install $ERLANG_OTP_VERSION /usr/local/lib/otp/ && . /usr/local/lib/otp/activate && \
147 curl -ssLo /usr/local/bin/rebar3 https://github.com/erlang/rebar3/releases/download/${ERLANG_REBAR_VERSION}/rebar3 && chmod +x /usr/local/bin/rebar3 && \
148 rebar3 --version
149ENV PATH /usr/local/lib/otp/bin:$PATH
150
151RUN apt-get install -y --no-install-recommends \
152 `# GlibC dependencies` \
153 libglib2.0-dev
154
155# golang
Jens Geyerde909632025-05-15 00:31:21 +0200156ENV GOLANG_VERSION 1.24.3
Jiayu Liu564b2872022-10-12 11:42:38 +0800157ENV GOLANG_DOWNLOAD_URL https://go.dev/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
Jens Geyerde909632025-05-15 00:31:21 +0200158ENV GOLANG_DOWNLOAD_SHA256 3333f6ea53afa971e9078895eaa4ac7204a8c6b5c68c10e6bc9a33e8e391bdd8
Jiayu Liu564b2872022-10-12 11:42:38 +0800159RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz && \
160 echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - && \
161 tar -C /usr/local -xzf golang.tar.gz && \
162 ln -s /usr/local/go/bin/go /usr/local/bin && \
163 rm golang.tar.gz
164
Thomas67685842024-03-04 21:32:26 +0900165# HAXE
166ARG HAXE_VERSION=4.2.1
167ARG NEKO_VERSION=2.3.0
168RUN cd $HOME && \
169 `# Haxe dependencies` && \
170 wget https://github.com/HaxeFoundation/haxe/releases/download/${HAXE_VERSION}/haxe-${HAXE_VERSION}-linux64.tar.gz && \
171 tar xvf haxe-${HAXE_VERSION}-linux64.tar.gz && \
172 rm haxe-${HAXE_VERSION}-linux64.tar.gz && \
173 mv haxe_* /opt/haxe && \
174 wget https://github.com/HaxeFoundation/neko/releases/download/v`echo ${NEKO_VERSION} | sed "s/\./-/g"`/neko-${NEKO_VERSION}-linux64.tar.gz && \
175 tar xvf neko-${NEKO_VERSION}-linux64.tar.gz && \
176 rm neko-${NEKO_VERSION}-linux64.tar.gz && \
177 mv neko-* /opt/neko
178ENV PATH /opt/haxe:/opt/neko:$PATH
179RUN echo "/opt/neko" > /etc/ld.so.conf.d/neko.conf && \
Thomas5f563e92024-03-06 23:26:22 +0900180 ldconfig
181USER ${user}
182RUN mkdir -p $HOME/haxe/lib && \
183 haxelib setup --always $HOME/haxe/lib && \
184 haxelib install --always hxcpp 2>&1 > /dev/null && \
185 haxelib install --always uuid 2>&1 > /dev/null
186USER root
Jiayu Liu564b2872022-10-12 11:42:38 +0800187
Jiayu Liud40dd722023-10-19 08:37:49 +0800188ENV GRADLE_VERSION="8.4"
Jiayu Liu564b2872022-10-12 11:42:38 +0800189RUN apt-get install -y --no-install-recommends \
190 `# Java dependencies` \
191 ant \
192 ant-optional \
193 maven \
Thomasc890ed42024-02-25 19:58:30 +0900194 openjdk-17-jdk-headless && \
Jiayu Liu564b2872022-10-12 11:42:38 +0800195 `# Gradle` \
196 wget https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip -q -O /tmp/gradle-$GRADLE_VERSION-bin.zip && \
Jiayu Liud40dd722023-10-19 08:37:49 +0800197 (echo "3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae /tmp/gradle-$GRADLE_VERSION-bin.zip" | sha256sum -c -) && \
Jiayu Liu564b2872022-10-12 11:42:38 +0800198 unzip -d /tmp /tmp/gradle-$GRADLE_VERSION-bin.zip && \
199 mv /tmp/gradle-$GRADLE_VERSION /usr/local/gradle && \
200 ln -s /usr/local/gradle/bin/gradle /usr/local/bin
201
202RUN apt-get install -y --no-install-recommends \
203 `# Lua dependencies` \
Thomaseb684d32024-07-28 15:32:23 +0200204 lua5.4 \
205 liblua5.4-dev
Jiayu Liu564b2872022-10-12 11:42:38 +0800206# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
207# lua5.3 does not install alternatives!
208# need to update our luasocket code, lua doesn't have luaL_openlib any more
209
210RUN apt-get install -y --no-install-recommends \
211 `# Node.js dependencies` \
212 nodejs
213
214# Test dependencies for running puppeteer
215RUN apt-get install -y --no-install-recommends \
216 `# JS dependencies` \
217 libxss1 \
218 libxtst6
219
220RUN apt-get install -y --no-install-recommends \
221 `# OCaml dependencies` \
222 ocaml \
223 opam && \
224 `# disable sandboxing see https://github.com/ocaml/opam/issues/4327` \
225 opam init --yes --disable-sandboxing && \
226 opam install --yes oasis
227
228RUN apt-get install -y --no-install-recommends \
229 `# Perl dependencies` \
230 libbit-vector-perl \
231 libclass-accessor-class-perl \
232 libcrypt-ssleay-perl \
233 libio-socket-ssl-perl \
234 libnet-ssleay-perl \
235 libtest-exception-perl
236
237RUN apt-get install -y --no-install-recommends \
238 `# Php dependencies` \
Thomasf5155172024-03-05 22:13:22 +0900239 php8.1 \
240 php8.1-cli \
241 php8.1-dev \
242 php8.1-mbstring \
243 php8.1-xml \
244 php8.1-curl \
245 php8.1-xdebug \
Jiayu Liu564b2872022-10-12 11:42:38 +0800246 php-pear \
247 re2c \
248 composer
249
250RUN apt-get install -y --no-install-recommends \
251 `# Python3 dependencies` \
252 python3-all \
253 python3-all-dbg \
254 python3-all-dev \
255 python3-pip \
256 python3-setuptools \
Jiayu Liu564b2872022-10-12 11:42:38 +0800257 python3-tornado \
258 python3-twisted \
259 python3-wheel \
260 python3-zope.interface
261
262RUN apt-get install -y --no-install-recommends \
263 `# Ruby dependencies` \
264 ruby \
265 ruby-dev \
266 ruby-bundler
267
Thomas67685842024-03-04 21:32:26 +0900268USER ${user}
269RUN `# Rust dependencies` \
Cameron Martinda54fc82025-01-12 08:55:45 +0000270 curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.83.0 -y
Thomas67685842024-03-04 21:32:26 +0900271ENV PATH /home/${user}/.cargo/bin:$PATH
272USER root
Jiayu Liu564b2872022-10-12 11:42:38 +0800273
274# Swift on Linux for cross tests
275RUN apt-get install -yq \
276 libedit-dev \
277 libz3-dev \
278 libpython2-dev \
279 libxml2-dev && \
280 cd / && \
281 wget --quiet https://download.swift.org/swift-5.7-release/ubuntu2204/swift-5.7-RELEASE/swift-5.7-RELEASE-ubuntu22.04.tar.gz && \
Kino Royc4954482022-11-19 22:52:04 -0800282 tar xf swift-5.7-RELEASE-ubuntu22.04.tar.gz && \
283 mv swift-5.7-RELEASE-ubuntu22.04 /usr/share/swift && \
284 rm swift-5.7-RELEASE-ubuntu22.04.tar.gz
285
286ENV PATH /usr/share/swift/usr/bin:$PATH
287RUN swift --version
Jiayu Liu564b2872022-10-12 11:42:38 +0800288
289# Locale(s) for cpp unit tests
290RUN apt-get install -y --no-install-recommends \
291 `# Locale dependencies` \
292 locales && \
293 locale-gen en_US.UTF-8 && \
294 locale-gen de_DE.UTF-8 && \
295 update-locale
296
297RUN apt-get install -y --no-install-recommends \
298 `# Static Code Analysis dependencies` \
299 cppcheck \
300 sloccount && \
301 pip install flake8
302
303# NOTE: this does not reduce the image size but adds an additional layer.
304# # Clean up
305# RUN rm -rf /var/cache/apt/* && \
306# rm -rf /var/lib/apt/lists/* && \
307# rm -rf /tmp/* && \
308# rm -rf /var/tmp/*
309
310ENV THRIFT_ROOT /thrift
Thomasc890ed42024-02-25 19:58:30 +0900311RUN mkdir -p $THRIFT_ROOT/src && \
312 chown -R ${uid}:${uid} $THRIFT_ROOT/
Jiayu Liu564b2872022-10-12 11:42:38 +0800313COPY Dockerfile $THRIFT_ROOT/
314WORKDIR $THRIFT_ROOT/src
Thomasc890ed42024-02-25 19:58:30 +0900315
316USER ${user}