mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
* Add clang devcontainers * Add gcc devcontainers * Remove comment * Transition to bullseye variants of clang image to build --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
19 lines
553 B
Docker
19 lines
553 B
Docker
ARG BASE_IMAGE_NAME="clang:latest"
|
|
|
|
FROM ${BASE_IMAGE_NAME}
|
|
|
|
ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE="3.31.7"
|
|
|
|
# Optionally install the cmake for vcpkg
|
|
COPY ./reinstall-cmake.sh /tmp/
|
|
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y install --no-install-recommends \
|
|
git \
|
|
wget
|
|
|
|
RUN if [ "${REINSTALL_CMAKE_VERSION_FROM_SOURCE}" != "none" ]; then \
|
|
chmod +x /tmp/reinstall-cmake.sh && /tmp/reinstall-cmake.sh ${REINSTALL_CMAKE_VERSION_FROM_SOURCE}; \
|
|
fi \
|
|
&& rm -f /tmp/reinstall-cmake.sh
|