1
0
Fork 0

Install development tools in docker images

timestamps
dump_stack() 2018-10-05 20:37:22 +00:00
parent 6a6ccfe728
commit 9cf5e1ff33
5 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,7 @@
FROM centos:6
RUN yum -y groupinstall "Development Tools"
# Last release must be download from mirror.centos.org, because vault.centos.org
# does not containt repodata for last release.
RUN yum list --showduplicates kernel \

View File

@ -1,5 +1,7 @@
FROM centos:7
RUN yum -y groupinstall "Development Tools"
# Last release must be download from mirror.centos.org, because vault.centos.org
# does not containt repodata for last release.
RUN yum list --showduplicates kernel \

View File

@ -1,4 +1,4 @@
FROM ubuntu:14.04
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-3*-generic linux-image-4*-generic linux-headers-*-generic
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-3*-generic linux-image-4*-generic linux-headers-*-generic build-essential wget git

View File

@ -1,4 +1,4 @@
FROM ubuntu:16.04
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-4*-generic linux-headers-*-generic
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-4*-generic linux-headers-*-generic build-essential wget git

View File

@ -1,4 +1,4 @@
FROM ubuntu:18.04
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-4*-generic linux-headers-*-generic
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-4*-generic linux-headers-*-generic build-essential wget git