# # Copyright (c) 2019-2024 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:23.04 RUN \ apt-get update && \ apt-get --no-install-recommends -y install \ ca-certificates \ gcc-13 \ g++-13 \ libssl-dev \ python3 \ python3-requests \ python-is-python3 \ ninja-build \ git \ cmake \ mysql-client && \ ln -s /usr/bin/g++-13 /usr/bin/g++ && \ ln -s /usr/bin/gcc-13 /usr/bin/gcc