blob: 374b4b59596b4bad8480c5b04abc288a65890bf9 [file] [log] [blame]
Jens Geyer94e1a302025-05-15 21:30:12 +02001# 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 Noble
15# with some updated packages.
16#
17
18FROM buildpack-deps:noble-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
35# Create a user
36ARG user=build
37ARG group=build
38ARG uid=1001
39ARG gid=1001
40
41RUN apt-get install -y --no-install-recommends sudo && \
42 echo "Running with: UID: ${uid}, User: ${user}, GID: ${gid}, Group: ${group}" && \
43 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}
48
49# 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
54# 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 libatk-bridge2.0-0 \
71 libgtk-3-0 \
72 llvm \
73 ninja-build \
74 pkg-config \
75 unzip \
76 valgrind \
77 vim
78ENV PATH /usr/lib/llvm-6.0/bin:$PATH
79
80# lib/as3 (ActionScript)
81RUN mkdir -p /usr/local/adobe/flex/4.6 && \
82 cd /usr/local/adobe/flex/4.6 && \
83 wget -q "http://download.macromedia.com/pub/flex/sdk/flex_sdk_4.6.zip" && \
84 unzip flex_sdk_4.6.zip
85ENV FLEX_HOME /usr/local/adobe/flex/4.6
86
87# TODO: "apt-get install" without "apt-get update" in the same "RUN" step can cause cache issues if modified later.
88# See https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#run
89RUN apt-get install -y --no-install-recommends \
90 `# C++ dependencies` \
91 libboost-all-dev \
92 libevent-dev \
93 libssl-dev \
94 qtbase5-dev \
95 qtbase5-dev-tools
96
97ENV SBCL_VERSION 1.5.3
98RUN \
99 `# Common Lisp (sbcl) dependencies` \
100 curl --version && \
101 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# && \
102 tar xjf sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2 && \
103 cd sbcl-${SBCL_VERSION}-x86-64-linux && \
104 ./install.sh && \
105 sbcl --version && \
106 cd .. && \
107 rm -rf sbcl*
108
109ENV D_VERSION 2.087.0
110ENV DMD_DEB dmd_2.087.0-0_amd64.deb
111RUN \
112 `# D dependencies` \
113 wget -q http://downloads.dlang.org/releases/2.x/${D_VERSION}/${DMD_DEB} && \
114 dpkg --install ${DMD_DEB} && \
115 rm -f ${DMD_DEB} && \
116 mkdir -p /usr/include/dmd/druntime/import/deimos /usr/include/dmd/druntime/import/C && \
117 git clone -b 'v2.0.2+2.0.16' https://github.com/D-Programming-Deimos/libevent.git deimos-libevent-2.0 && \
118 mv deimos-libevent-2.0/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
119 mv deimos-libevent-2.0/C/* /usr/include/dmd/druntime/import/C/ && \
120 rm -rf deimos-libevent-2.0 && \
121 git clone -b 'v2.0.0+1.1.0h' https://github.com/D-Programming-Deimos/openssl.git deimos-openssl-1.1.0h && \
122 mv deimos-openssl-1.1.0h/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
123 mv deimos-openssl-1.1.0h/C/* /usr/include/dmd/druntime/import/C/ && \
124 rm -rf deimos-openssl-1.1.0h
125
126ENV DART_VERSION 2.7.2-1
127RUN apt-get install -y --no-install-recommends \
128 `# Dart dependencies` \
129 dart=$DART_VERSION
130ENV PATH /usr/lib/dart/bin:$PATH
131
132RUN add-apt-repository ppa:dotnet/backports
133RUN apt-get install -y --no-install-recommends \
134 `# dotnet core dependencies` \
135 dotnet-sdk-9.0 \
136 dotnet-runtime-9.0 \
137 aspnetcore-runtime-9.0 \
138 dotnet-apphost-pack-9.0
139
140# Erlang dependencies
141ARG ERLANG_OTP_VERSION=25.3.2.9
142ARG ERLANG_REBAR_VERSION=3.18.0
143RUN apt-get update && apt-get install -y --no-install-recommends libncurses5-dev && \
144 curl -ssLo /usr/local/bin/kerl https://raw.githubusercontent.com/kerl/kerl/master/kerl && chmod +x /usr/local/bin/kerl && \
145 kerl build $ERLANG_OTP_VERSION && kerl install $ERLANG_OTP_VERSION /usr/local/lib/otp/ && . /usr/local/lib/otp/activate && \
146 curl -ssLo /usr/local/bin/rebar3 https://github.com/erlang/rebar3/releases/download/${ERLANG_REBAR_VERSION}/rebar3 && chmod +x /usr/local/bin/rebar3 && \
147 rebar3 --version
148ENV PATH /usr/local/lib/otp/bin:$PATH
149
150RUN apt-get install -y --no-install-recommends \
151 `# GlibC dependencies` \
152 libglib2.0-dev
153
154# golang
155ENV GOLANG_VERSION 1.24.3
156ENV GOLANG_DOWNLOAD_URL https://go.dev/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
157ENV GOLANG_DOWNLOAD_SHA256 3333f6ea53afa971e9078895eaa4ac7204a8c6b5c68c10e6bc9a33e8e391bdd8
158RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz && \
159 echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - && \
160 tar -C /usr/local -xzf golang.tar.gz && \
161 ln -s /usr/local/go/bin/go /usr/local/bin && \
162 rm golang.tar.gz
163
164# HAXE
165ARG HAXE_VERSION=4.2.1
166ARG NEKO_VERSION=2.3.0
167RUN cd $HOME && \
168 `# Haxe dependencies` && \
169 wget https://github.com/HaxeFoundation/haxe/releases/download/${HAXE_VERSION}/haxe-${HAXE_VERSION}-linux64.tar.gz && \
170 tar xvf haxe-${HAXE_VERSION}-linux64.tar.gz && \
171 rm haxe-${HAXE_VERSION}-linux64.tar.gz && \
172 mv haxe_* /opt/haxe && \
173 wget https://github.com/HaxeFoundation/neko/releases/download/v`echo ${NEKO_VERSION} | sed "s/\./-/g"`/neko-${NEKO_VERSION}-linux64.tar.gz && \
174 tar xvf neko-${NEKO_VERSION}-linux64.tar.gz && \
175 rm neko-${NEKO_VERSION}-linux64.tar.gz && \
176 mv neko-* /opt/neko
177ENV PATH /opt/haxe:/opt/neko:$PATH
178RUN echo "/opt/neko" > /etc/ld.so.conf.d/neko.conf && \
179 ldconfig
180USER ${user}
181RUN mkdir -p $HOME/haxe/lib && \
182 haxelib setup --always $HOME/haxe/lib && \
183 haxelib install --always hxcpp 2>&1 > /dev/null && \
184 haxelib install --always uuid 2>&1 > /dev/null
185USER root
186
187ENV GRADLE_VERSION="8.4"
188RUN apt-get install -y --no-install-recommends \
189 `# Java dependencies` \
190 ant \
191 ant-optional \
192 maven \
193 openjdk-17-jdk-headless && \
194 `# Gradle` \
195 wget https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip -q -O /tmp/gradle-$GRADLE_VERSION-bin.zip && \
196 (echo "3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae /tmp/gradle-$GRADLE_VERSION-bin.zip" | sha256sum -c -) && \
197 unzip -d /tmp /tmp/gradle-$GRADLE_VERSION-bin.zip && \
198 mv /tmp/gradle-$GRADLE_VERSION /usr/local/gradle && \
199 ln -s /usr/local/gradle/bin/gradle /usr/local/bin
200
201RUN apt-get install -y --no-install-recommends \
202 `# Lua dependencies` \
203 lua5.4 \
204 liblua5.4-dev
205# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
206# lua5.3 does not install alternatives!
207# need to update our luasocket code, lua doesn't have luaL_openlib any more
208
209RUN apt-get install -y --no-install-recommends \
210 `# Node.js dependencies` \
211 nodejs
212
213# Test dependencies for running puppeteer
214RUN apt-get install -y --no-install-recommends \
215 `# JS dependencies` \
216 libxss1 \
217 libxtst6
218
219RUN apt-get install -y --no-install-recommends \
220 `# OCaml dependencies` \
221 ocaml \
222 opam && \
223 `# disable sandboxing see https://github.com/ocaml/opam/issues/4327` \
224 opam init --yes --disable-sandboxing && \
225 opam install --yes oasis
226
227RUN apt-get install -y --no-install-recommends \
228 `# Perl dependencies` \
229 libbit-vector-perl \
230 libclass-accessor-class-perl \
231 libcrypt-ssleay-perl \
232 libio-socket-ssl-perl \
233 libnet-ssleay-perl \
234 libtest-exception-perl
235
236RUN apt-get install -y --no-install-recommends \
237 `# Php dependencies` \
238 php8.3 \
239 php8.3-cli \
240 php8.3-dev \
241 php8.3-mbstring \
242 php8.3-xml \
243 php8.3-curl \
244 php8.3-xdebug \
245 php-pear \
246 re2c \
247 composer
248
249RUN apt-get install -y --no-install-recommends \
250 `# Python3 dependencies` \
251 python3-all \
252 python3-all-dbg \
253 python3-all-dev \
254 python3-pip \
255 python3-setuptools \
256 python3-tornado \
257 python3-twisted \
258 python3-wheel \
259 python3-zope.interface
260
261RUN apt-get install -y --no-install-recommends \
262 `# Ruby dependencies` \
263 ruby \
264 ruby-dev \
265 ruby-bundler
266
267USER ${user}
268RUN `# Rust dependencies` \
269 curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.83.0 -y
270ENV PATH /home/${user}/.cargo/bin:$PATH
271USER root
272
273# Swift on Linux for cross tests
274RUN apt-get install -yq \
275 libedit-dev \
276 libz3-dev \
277 python3-flake8 \
278 libxml2-dev && \
279 cd / && \
280 wget --quiet https://download.swift.org/swift-6.1-release/ubuntu2404/swift-6.1-RELEASE/swift-6.1-RELEASE-ubuntu24.04.tar.gz && \
281 tar xf swift-6.1-RELEASE-ubuntu24.04.tar.gz && \
282 mv swift-6.1-RELEASE-ubuntu24.04 /usr/share/swift && \
283 rm swift-6.1-RELEASE-ubuntu24.04.tar.gz
284
285ENV PATH /usr/share/swift/usr/bin:$PATH
286RUN swift --version
287
288# Locale(s) for cpp unit tests
289RUN apt-get install -y --no-install-recommends \
290 `# Locale dependencies` \
291 locales && \
292 locale-gen en_US.UTF-8 && \
293 locale-gen de_DE.UTF-8 && \
294 update-locale
295
296RUN apt-get install -y --no-install-recommends \
297 `# Static Code Analysis dependencies` \
298 cppcheck \
299 sloccount
300
301#RUN 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
311RUN mkdir -p $THRIFT_ROOT/src && \
312 chown -R ${uid}:${uid} $THRIFT_ROOT/
313COPY Dockerfile $THRIFT_ROOT/
314WORKDIR $THRIFT_ROOT/src
315
316USER ${user}