diff --git a/recipes/debian-10/Dockerfile b/recipes/debian-10/Dockerfile index 04af4d7..e947eb0 100644 --- a/recipes/debian-10/Dockerfile +++ b/recipes/debian-10/Dockerfile @@ -5,8 +5,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN sed -i 's/deb.debian.com/debian.mirrors.ovh.net/g' /etc/apt/sources.list RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \ diff --git a/recipes/debian-11/Dockerfile b/recipes/debian-11/Dockerfile index d61f8e3..c15a5ac 100644 --- a/recipes/debian-11/Dockerfile +++ b/recipes/debian-11/Dockerfile @@ -5,8 +5,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN sed -i 's/deb.debian.com/debian.mirrors.ovh.net/g' /etc/apt/sources.list RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \ diff --git a/recipes/debian-12/Dockerfile b/recipes/debian-12/Dockerfile index ce782ba..e2fdd39 100644 --- a/recipes/debian-12/Dockerfile +++ b/recipes/debian-12/Dockerfile @@ -4,8 +4,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \ diff --git a/recipes/rhel8/Dockerfile b/recipes/rhel8/Dockerfile index ac56612..9e7c5d0 100644 --- a/recipes/rhel8/Dockerfile +++ b/recipes/rhel8/Dockerfile @@ -4,6 +4,7 @@ RUN yum update -y RUN yum install -y \ gcc \ + g++ \ zlib-devel \ openssl-devel \ pam \ diff --git a/recipes/rhel9/Dockerfile b/recipes/rhel9/Dockerfile index 6b53012..a68bb55 100644 --- a/recipes/rhel9/Dockerfile +++ b/recipes/rhel9/Dockerfile @@ -4,6 +4,7 @@ RUN yum update -y RUN yum install -y \ gcc \ + g++ \ zlib-devel \ openssl-devel \ pam \ diff --git a/recipes/ubuntu-18.04/Dockerfile b/recipes/ubuntu-18.04/Dockerfile index 8a49572..b447f1b 100644 --- a/recipes/ubuntu-18.04/Dockerfile +++ b/recipes/ubuntu-18.04/Dockerfile @@ -5,8 +5,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN sed -i 's/archive.ubuntu.com/ubuntu.mirrors.ovh.net/g' /etc/apt/sources.list RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \ diff --git a/recipes/ubuntu-20.04/Dockerfile b/recipes/ubuntu-20.04/Dockerfile index f6ee342..b707965 100644 --- a/recipes/ubuntu-20.04/Dockerfile +++ b/recipes/ubuntu-20.04/Dockerfile @@ -5,8 +5,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN sed -i 's/archive.ubuntu.com/ubuntu.mirrors.ovh.net/g' /etc/apt/sources.list RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \ diff --git a/recipes/ubuntu-22.04/Dockerfile b/recipes/ubuntu-22.04/Dockerfile index 2d4511e..05d3828 100644 --- a/recipes/ubuntu-22.04/Dockerfile +++ b/recipes/ubuntu-22.04/Dockerfile @@ -5,8 +5,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN sed -i 's/archive.ubuntu.com/ubuntu.mirrors.ovh.net/g' /etc/apt/sources.list RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \ diff --git a/recipes/ubuntu-24.04/Dockerfile b/recipes/ubuntu-24.04/Dockerfile index 241a7e7..c25265b 100644 --- a/recipes/ubuntu-24.04/Dockerfile +++ b/recipes/ubuntu-24.04/Dockerfile @@ -5,8 +5,9 @@ ARG DEBIAN_FRONTEND=noninteractive RUN sed -i 's/archive.ubuntu.com/ubuntu.mirrors.ovh.net/g' /etc/apt/sources.list RUN apt-get update -y -RUN apt-get install -y \ +RUN apt-get install --no-install-recommends -y \ gcc \ + g++ \ libssl-dev \ libpam-dev \ libkrb5-dev \