Skip to content
Snippets Groups Projects

feat: py-minkowskiengine

Closed Wouter Deconinck requested to merge wdconinc-master-patch-02750 into master
Compare and Show latest version
27 files
+ 1284
1209
Compare changes
  • Side-by-side
  • Inline
Files
27
#syntax=docker/dockerfile:1.2
ARG BASE_IMAGE="amd64/debian:testing-20220822-slim"
ARG BUILD_IMAGE="debian_base"
#syntax=docker/dockerfile:1.4
ARG BASE_IMAGE="amd64/debian:stable-slim"
ARG BUILD_IMAGE="debian_stable_base"
# Minimal container based on Debian base systems for up-to-date packages.
FROM ${BASE_IMAGE}
@@ -44,6 +44,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
locales \
lua-posix \
make \
moreutils \
nano \
openssh-client \
parallel \
@@ -79,6 +80,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
gcc${GCC} g++${GCC} gfortran${GCC} \
&& apt-get -yqq install \
clang${CLANG} clang-tidy${CLANG} clang-format${CLANG} \
iwyu \
&& update-alternatives --install /usr/bin/gcc gcc \
/usr/bin/gcc${GCC} 100 \
&& update-alternatives --install /usr/bin/g++ g++ \
@@ -94,6 +96,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
&& apt-get -yqq install \
gcc g++ gfortran \
clang clang-tidy clang-format \
iwyu \
; fi \
&& apt-get -yqq autoremove \
&& gcc --version \
Loading