mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
239 lines
7.1 KiB
Docker
239 lines
7.1 KiB
Docker
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Apache Thrift Docker build environment for Ubuntu Xenial
|
|
#
|
|
# Known missing or disabled libraries:
|
|
# - d: deimos for libevent and openssl omitted - not compatible / build errors
|
|
# - dotnetcore, because netcore is for 1.0.0-preview and 2.0.0 is out
|
|
|
|
FROM buildpack-deps:xenial-scm
|
|
MAINTAINER Apache Thrift <dev@thrift.apache.org>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
### Add apt repos
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends apt apt-transport-https curl wget apt-utils
|
|
|
|
# csharp (mono)
|
|
RUN echo "deb http://download.mono-project.com/repo/debian xenial main" | tee /etc/apt/sources.list.d/mono.list && \
|
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A6A19B38D3D831EF
|
|
|
|
# D
|
|
RUN wget http://master.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list && \
|
|
apt-get update && apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring
|
|
|
|
# Dart
|
|
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
|
|
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list && \
|
|
sed -i /etc/apt/sources.list.d/dart_stable.list -e 's/https:/http:/g'
|
|
|
|
# dotnet (core) 2.0.0 - project isn't ready for this yet:
|
|
# RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.gpg && \
|
|
# echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-xenial-prod xenial main" > /etc/apt/sources.list.d/dotnetdev.list
|
|
|
|
# node.js (this step runs apt-get update internally)
|
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
|
|
|
|
|
|
### install general dependencies
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# General dependencies` \
|
|
bash-completion \
|
|
bison \
|
|
build-essential \
|
|
clang \
|
|
cmake \
|
|
debhelper \
|
|
flex \
|
|
gdb \
|
|
llvm \
|
|
ninja-build \
|
|
pkg-config \
|
|
valgrind \
|
|
vim
|
|
ENV PATH /usr/lib/llvm-3.8/bin:$PATH
|
|
|
|
### languages
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# C++ dependencies` \
|
|
libboost-dev \
|
|
libboost-filesystem-dev \
|
|
libboost-program-options-dev \
|
|
libboost-system-dev \
|
|
libboost-test-dev \
|
|
libboost-thread-dev \
|
|
libevent-dev \
|
|
libssl-dev \
|
|
qt5-default \
|
|
qtbase5-dev \
|
|
qtbase5-dev-tools
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# csharp (mono) dependencies` \
|
|
mono-devel
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# D dependencies` \
|
|
dmd-bin \
|
|
libevent-dev \
|
|
libssl-dev \
|
|
xdg-utils
|
|
# libevent deimos doesn't seem to work so disabling it:
|
|
# RUN mkdir -p /usr/include/dmd/druntime/import/deimos /usr/include/dmd/druntime/import/C && \
|
|
# curl -sSL https://github.com/D-Programming-Deimos/libevent/archive/master.tar.gz| tar xz && \
|
|
# mv libevent-master/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
|
|
# mv libevent-master/C/* /usr/include/dmd/druntime/import/C/ && \
|
|
# rm -rf libevent-master
|
|
# openssl deimos doesn't work with openssl-1.0.2 so disabling it:
|
|
# RUN curl -sSL https://github.com/D-Programming-Deimos/openssl/archive/master.tar.gz| tar xz && \
|
|
# mv openssl-master/deimos/* /usr/include/dmd/druntime/import/deimos/ && \
|
|
# mv openssl-master/C/* /usr/include/dmd/druntime/import/C/ && \
|
|
# rm -rf openssl-master
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Dart dependencies` \
|
|
dart
|
|
ENV PATH /usr/lib/dart/bin:$PATH
|
|
|
|
# project isn't ready for this quite yet:
|
|
# RUN apt-get install -y --no-install-recommends \
|
|
# `# dotnet core dependencies` \
|
|
# dotnet-sdk-2.0.0
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Erlang dependencies` \
|
|
erlang-base \
|
|
erlang-eunit \
|
|
erlang-dev \
|
|
erlang-tools \
|
|
rebar
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# GlibC dependencies` \
|
|
libglib2.0-dev
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# golang (go) dependencies` \
|
|
golang-go \
|
|
golang-race-detector-runtime
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Haskell dependencies` \
|
|
ghc \
|
|
cabal-install
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Haxe dependencies` \
|
|
haxe \
|
|
neko \
|
|
neko-dev \
|
|
libneko0
|
|
RUN haxelib setup --always /usr/share/haxe/lib && \
|
|
haxelib install --always hxcpp 3.4.64
|
|
# note: hxcpp 3.4.185 (latest) no longer ships static libraries, and caused a build failure
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Java dependencies` \
|
|
ant \
|
|
ant-optional \
|
|
openjdk-8-jdk \
|
|
maven
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Lua dependencies` \
|
|
lua5.2 \
|
|
lua5.2-dev
|
|
# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
|
|
# lua5.3 does not install alternatives so stick with 5.2 here
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Node.js dependencies` \
|
|
nodejs
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# OCaml dependencies` \
|
|
ocaml \
|
|
opam && \
|
|
opam init --yes && \
|
|
opam install --yes oasis
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Perl dependencies` \
|
|
libbit-vector-perl \
|
|
libclass-accessor-class-perl \
|
|
libcrypt-ssleay-perl \
|
|
libio-socket-ssl-perl \
|
|
libnet-ssleay-perl
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Php dependencies` \
|
|
php7.0 \
|
|
php7.0-cli \
|
|
php7.0-dev \
|
|
php-pear \
|
|
re2c \
|
|
phpunit
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Python dependencies` \
|
|
python-all \
|
|
python-all-dbg \
|
|
python-all-dev \
|
|
python-backports.ssl-match-hostname \
|
|
python-ipaddress \
|
|
python-pip \
|
|
python-setuptools \
|
|
python-six \
|
|
python-tornado \
|
|
python-twisted \
|
|
python-wheel \
|
|
python-zope.interface \
|
|
python3-all \
|
|
python3-all-dbg \
|
|
python3-all-dev \
|
|
python3-setuptools \
|
|
python3-six \
|
|
python3-tornado \
|
|
python3-twisted \
|
|
python3-wheel \
|
|
python3-zope.interface && \
|
|
pip install --upgrade backports.ssl_match_hostname
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Ruby dependencies` \
|
|
ruby \
|
|
ruby-dev \
|
|
ruby-bundler
|
|
RUN gem install bundler --no-ri --no-rdoc
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
`# Rust dependencies` \
|
|
cargo \
|
|
rustc
|
|
|
|
# Update anything else left hanging
|
|
RUN apt-get dist-upgrade -y
|
|
|
|
# Clean up
|
|
RUN rm -rf /var/cache/apt/* && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm -rf /tmp/* && \
|
|
rm -rf /var/tmp/*
|
|
|
|
ENV THRIFT_ROOT /thrift
|
|
RUN mkdir -p $THRIFT_ROOT/src
|
|
COPY Dockerfile $THRIFT_ROOT/
|
|
WORKDIR $THRIFT_ROOT/src
|