Add g++ to debian/ubuntu/opensuse

This commit is contained in:
Takuya Noguchi 2018-02-27 00:31:44 +09:00 committed by Stan Hu
parent 8cb83887d0
commit 402179f893
8 changed files with 8 additions and 8 deletions

View file

@ -3,7 +3,7 @@ FROM centos:centos6
RUN yum update -y -q RUN yum update -y -q
RUN yum groupinstall -y Development Tools RUN yum groupinstall -y Development Tools
RUN yum install -y \ RUN yum install -y \
gcc git make curl zlib-devel openssl-devel gcc gcc-c++ git make curl zlib-devel openssl-devel
ENV LANG en_US.UTF-8 ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8 ENV LC_ALL en_US.UTF-8

View file

@ -3,7 +3,7 @@ FROM centos:centos7
RUN yum update -y -q RUN yum update -y -q
RUN yum groupinstall -y Development Tools RUN yum groupinstall -y Development Tools
RUN yum install -y \ RUN yum install -y \
gcc git make curl zlib-devel openssl-devel gcc gcc-c++ git make curl zlib-devel openssl-devel
ENV LANG en_US.UTF-8 ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8 ENV LC_ALL en_US.UTF-8

View file

@ -1,7 +1,7 @@
FROM debian:jessie FROM debian:jessie
RUN apt-get update -q \ RUN apt-get update -q \
&& apt-get install -y gcc git make curl zlib1g-dev libssl-dev locales\ && apt-get install -y g++ gcc git make curl zlib1g-dev libssl-dev locales\
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen

View file

@ -3,7 +3,7 @@ FROM opensuse:42.3
RUN zypper -q -n --gpg-auto-import-keys update RUN zypper -q -n --gpg-auto-import-keys update
RUN zypper -q -n in -t pattern devel_perl devel_basis RUN zypper -q -n in -t pattern devel_perl devel_basis
RUN zypper -q -n install \ RUN zypper -q -n install \
gcc git make curl zlib-devel libopenssl-devel glibc-i18ndata glibc-locale gcc gcc-c++ git make curl zlib-devel libopenssl-devel glibc-i18ndata glibc-locale
ENV LANG en_US.UTF-8 ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8 ENV LC_ALL en_US.UTF-8

View file

@ -1,7 +1,7 @@
FROM debian:stretch FROM debian:stretch
RUN apt-get update -q \ RUN apt-get update -q \
&& apt-get install -y gcc git make curl zlib1g-dev libssl1.0-dev locales \ && apt-get install -y g++ gcc git make curl zlib1g-dev libssl1.0-dev locales \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen

View file

@ -1,7 +1,7 @@
FROM ubuntu:14.04 FROM ubuntu:14.04
RUN apt-get update -q \ RUN apt-get update -q \
&& apt-get install -y gcc git make curl zlib1g-dev libssl-dev \ && apt-get install -y g++ gcc git make curl zlib1g-dev libssl-dev \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
ENV RUBY_VERSION 2.3.3 ENV RUBY_VERSION 2.3.3

View file

@ -1,7 +1,7 @@
FROM debian:wheezy FROM debian:wheezy
RUN apt-get update -q \ RUN apt-get update -q \
&& apt-get install -y gcc git make libc6-dev curl zlib1g-dev libssl-dev locales \ && apt-get install -y g++ gcc git make libc6-dev curl zlib1g-dev libssl-dev locales \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen

View file

@ -1,7 +1,7 @@
FROM ubuntu:16.04 FROM ubuntu:16.04
RUN apt-get update -q \ RUN apt-get update -q \
&& apt-get install -y gcc git make curl zlib1g-dev libssl-dev locales \ && apt-get install -y g++ gcc git make curl zlib1g-dev libssl-dev locales \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen