-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from mremi/master
Fix issue with iconv in PHP image and use Alpine binary of ci-helper
- Loading branch information
Showing
13 changed files
with
87 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM alpine:3.4 | ||
MAINTAINER Frank Pavageau <[email protected]> | ||
LABEL maintainer="Frank Pavageau <[email protected]>" | ||
|
||
ARG CI_HELPER_VERSION | ||
|
||
|
@@ -10,10 +10,6 @@ RUN echo "Install AWS" && \ | |
echo "Done install AWS" && \ | ||
|
||
echo "Install CI Helper" && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-2.23-r3.apk -O && \ | ||
apk add -q glibc-2.23-r3.apk && \ | ||
rm /etc/apk/keys/sgerrand.rsa.pub glibc-2.23-r3.apk && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/linux-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/alpine-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
chmod 755 /usr/bin/ci-helper && \ | ||
echo "Done install CI Helper" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
FROM docker:18.01.0-ce-dind | ||
MAINTAINER Rémi Marseille <[email protected]> | ||
LABEL maintainer="Rémi Marseille <[email protected]>" | ||
|
||
ARG CI_HELPER_VERSION | ||
ARG DOCKER_COMPOSE_VERSION | ||
ARG GLIBC_VERSION=2.23-r3 | ||
ARG GLIBC_VERSION | ||
|
||
RUN echo "Install AWS" && \ | ||
apk add -q --no-cache bash ca-certificates curl git make openssh-client python py-pip rsync tzdata && \ | ||
pip -q install awscli boto3 PyYAML && \ | ||
echo "Done install AWS" && \ | ||
|
||
echo "Install CI Helper" && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/alpine-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
chmod 755 /usr/bin/ci-helper && \ | ||
echo "Done install CI Helper" && \ | ||
|
||
echo "Install Docker Compose" && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk -O && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-bin-${GLIBC_VERSION}.apk -O && \ | ||
apk add --update -q glibc-${GLIBC_VERSION}.apk glibc-bin-${GLIBC_VERSION}.apk && \ | ||
rm /etc/apk/keys/sgerrand.rsa.pub glibc-${GLIBC_VERSION}.apk glibc-bin-${GLIBC_VERSION}.apk && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/linux-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
chmod 755 /usr/bin/ci-helper && \ | ||
echo "Done install CI Helper" && \ | ||
|
||
echo "Install Docker Compose" && \ | ||
curl -sSL https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose && \ | ||
chmod +x /usr/local/bin/docker-compose && \ | ||
docker-compose --version && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM golang:1.8 | ||
MAINTAINER Raphaël Benitte <[email protected]> | ||
LABEL maintainer="Raphaël Benitte <[email protected]>" | ||
|
||
ARG GLIDE_VERSION | ||
ARG CI_HELPER_VERSION | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM debian:8.7 | ||
MAINTAINER Stephane Leclercq <[email protected]> | ||
LABEL maintainer="Stephane Leclercq <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
LANG=C.UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM debian:8.7 | ||
MAINTAINER Thomas Rabaix <[email protected]> | ||
LABEL maintainer="Thomas Rabaix <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
LANG=C.UTF-8 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM jolicode/phpenv | ||
MAINTAINER Rémi Marseille <[email protected]> | ||
LABEL maintainer="Rémi Marseille <[email protected]>" | ||
|
||
ARG PHP_VERSION | ||
ARG CI_HELPER_VERSION | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM ruby:2.5.0-alpine | ||
MAINTAINER Rémi Marseille <[email protected]> | ||
LABEL maintainer="Rémi Marseille <[email protected]>" | ||
|
||
ARG CI_HELPER_VERSION | ||
|
||
|
@@ -8,11 +8,7 @@ RUN echo "Starting ..." && \ | |
echo "Done base install!" && \ | ||
|
||
echo "Install CI Helper" && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-2.23-r3.apk -O && \ | ||
apk add -q glibc-2.23-r3.apk && \ | ||
rm /etc/apk/keys/sgerrand.rsa.pub glibc-2.23-r3.apk && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/linux-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/alpine-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
chmod 755 /usr/bin/ci-helper && \ | ||
echo "Done install CI Helper" && \ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
FROM alpine:3.4 | ||
LABEL maintainer="Thomas Rabaix <[email protected]>" | ||
|
||
ARG SONARSCANNER_VERSION | ||
|
||
ENV PATH=/sonar-scanner/bin:/sonar-scanner/jre/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | ||
|
||
ARG SONARSCANNER_VERSION | ||
ARG CI_HELPER_VERSION | ||
ARG GLIBC_VERSION | ||
ARG SONARSCANNER_VERSION | ||
|
||
RUN echo "Starting ..." && \ | ||
apk --update upgrade && apk add curl make tzdata unzip && \ | ||
echo "Done base install!" && \ | ||
|
||
echo "Starting Sonar Scanner" && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk -O && \ | ||
apk add -q glibc-${GLIBC_VERSION}.apk && \ | ||
rm /etc/apk/keys/sgerrand.rsa.pub glibc-${GLIBC_VERSION}.apk && \ | ||
curl --insecure -o ./sonarscanner.zip -L https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONARSCANNER_VERSION}-linux.zip && \ | ||
unzip sonarscanner.zip && \ | ||
rm sonarscanner.zip && \ | ||
mv sonar-scanner-${SONARSCANNER_VERSION}-linux sonar-scanner && \ | ||
echo "Done Sonar Scanner!" && \ | ||
|
||
echo "Install CI Helper" && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub && \ | ||
curl -sSL https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-2.23-r3.apk -O && \ | ||
apk add -q glibc-2.23-r3.apk && \ | ||
rm /etc/apk/keys/sgerrand.rsa.pub glibc-2.23-r3.apk && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/linux-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
curl -sSL https://github.com/rande/gitlab-ci-helper/releases/download/${CI_HELPER_VERSION}/alpine-amd64-gitlab-ci-helper -o /usr/bin/ci-helper && \ | ||
chmod 755 /usr/bin/ci-helper && \ | ||
echo "Done install CI Helper" && \ | ||
echo "Done install CI Helper" && \ | ||
|
||
echo "Cleaning files!" && \ | ||
rm -rf /tmp/* /var/cache/apk/* && \ | ||
|
Oops, something went wrong.