mirror of
https://github.com/boostorg/mysql.git
synced 2025-05-12 14:11:41 +00:00
27 lines
708 B
Docker
27 lines
708 B
Docker
#
|
|
# Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
|
|
FROM ubuntu:16.04
|
|
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get --no-install-recommends -y install \
|
|
clang-3.6 \
|
|
llvm-3.6 \
|
|
libssl-dev \
|
|
git \
|
|
ca-certificates \
|
|
python3 \
|
|
python3-requests \
|
|
cmake \
|
|
ninja-build \
|
|
valgrind \
|
|
mysql-client && \
|
|
ln -s /usr/bin/clang++-3.6 /usr/bin/clang++ && \
|
|
ln -s /usr/bin/clang-3.6 /usr/bin/clang && \
|
|
ln -s /usr/bin/python3 /usr/bin/python
|