Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion recipes/debian-10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion recipes/debian-11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion recipes/debian-12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions recipes/rhel8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ RUN yum update -y

RUN yum install -y \
gcc \
g++ \
zlib-devel \
openssl-devel \
pam \
Expand Down
1 change: 1 addition & 0 deletions recipes/rhel9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ RUN yum update -y

RUN yum install -y \
gcc \
g++ \
zlib-devel \
openssl-devel \
pam \
Expand Down
3 changes: 2 additions & 1 deletion recipes/ubuntu-18.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion recipes/ubuntu-20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion recipes/ubuntu-22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion recipes/ubuntu-24.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down