Merge pull request #426 from Rajpratik71/enhancement/debian_apt

pod : optimization Some debian package manager tweaks
This commit is contained in:
GabyCT
2020-03-17 13:08:08 -06:00
committed by GitHub
2 changed files with 6 additions and 2 deletions

View File

@@ -7,11 +7,13 @@
from docker.io/debian:@OS_VERSION@ from docker.io/debian:@OS_VERSION@
# RUN commands # RUN commands
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get --no-install-recommends install -y \
apt-utils \
autoconf \ autoconf \
automake \ automake \
binutils \ binutils \
build-essential \ build-essential \
ca-certificates \
chrony \ chrony \
cmake \ cmake \
coreutils \ coreutils \

View File

@@ -11,11 +11,13 @@ from docker.io/ubuntu:@OS_VERSION@
# Install any package need to create a rootfs (package manager, extra tools) # Install any package need to create a rootfs (package manager, extra tools)
# RUN commands # RUN commands
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get --no-install-recommends install -y \
apt-utils \
autoconf \ autoconf \
automake \ automake \
binutils \ binutils \
build-essential \ build-essential \
ca-certificates \
chrony \ chrony \
cmake \ cmake \
coreutils \ coreutils \