mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Merge branch '16-add-cpp-to-debian-ubuntu-opensuse' into 'master'
Add g++ to debian/ubuntu/opensuse Closes #16 See merge request gitlab-org/gitlab-build-images!78
This commit is contained in:
commit
4555a2b231
8 changed files with 8 additions and 8 deletions
|
|
@ -3,7 +3,7 @@ FROM centos:centos6
|
|||
RUN yum update -y -q
|
||||
RUN yum groupinstall -y Development Tools
|
||||
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 LC_ALL en_US.UTF-8
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ FROM centos:centos7
|
|||
RUN yum update -y -q
|
||||
RUN yum groupinstall -y Development Tools
|
||||
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 LC_ALL en_US.UTF-8
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM debian:jessie
|
||||
|
||||
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/*
|
||||
|
||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ FROM opensuse:42.3
|
|||
RUN zypper -q -n --gpg-auto-import-keys update
|
||||
RUN zypper -q -n in -t pattern devel_perl devel_basis
|
||||
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 LC_ALL en_US.UTF-8
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM debian:stretch
|
||||
|
||||
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/*
|
||||
|
||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM ubuntu:14.04
|
||||
|
||||
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/*
|
||||
|
||||
ENV RUBY_VERSION 2.3.3
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM debian:wheezy
|
||||
|
||||
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/*
|
||||
|
||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM ubuntu:16.04
|
||||
|
||||
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/*
|
||||
|
||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue