32 lines
891 B
Docker
Raw Normal View History

2020-02-01 23:06:01 +01:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
# Produce a base image with a build environment for portable CMake binaries.
# Build using the directory containing this file as its own build context.
2023-12-07 09:12:54 +01:00
ARG FROM_IMAGE_NAME=centos:7
ARG FROM_IMAGE_DIGEST=@sha256:be65f488b7764ad3638f236b7b515b3678369a5124c47b8d32916d6487418ea4
2020-02-01 23:06:01 +01:00
ARG FROM_IMAGE=$FROM_IMAGE_NAME$FROM_IMAGE_DIGEST
FROM $FROM_IMAGE
RUN : \
&& yum install -y centos-release-scl \
&& yum install -y \
ca-certificates \
curl \
2023-12-07 09:12:54 +01:00
devtoolset-7-gcc \
devtoolset-7-gcc-c++ \
2020-02-01 23:06:01 +01:00
fontconfig-devel \
freetype-devel \
git \
libX11-devel \
libxcb-devel \
make \
patch \
perl \
2023-12-07 09:12:54 +01:00
python3-pip \
2020-02-01 23:06:01 +01:00
xz \
2023-12-07 09:12:54 +01:00
which \
2020-02-01 23:06:01 +01:00
&& yum clean all \
&& :