Skip to content
Snippets Groups Projects
Commit 57bb28ea authored by Alexey Kuklin's avatar Alexey Kuklin
Browse files

Merge branch 'master' into 'with-codecgen'

updating golang vers

See merge request !7
parents f762a735 26730215
Branches
No related tags found
1 merge request!7updating golang vers
Pipeline #25551 passed
......@@ -43,7 +43,7 @@ manifest:
IMAGE_ppc64le: $CI_REGISTRY/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME/ppc64le:$CI_COMMIT_REF_NAME
stage: manifest
tags:
- amd64
- script
script:
- docker manifest create $IMAGE $IMAGE_amd64 $IMAGE_ppc64le
- docker manifest push $IMAGE
......
FROM golang:1.10.3
FROM golang:1.14.1
ENV DEBIAN_FRONTEND=noninteractive
RUN go get -u github.com/golang/dep/cmd/dep github.com/ugorji/go/codec/codecgen \
&& echo deb http://deb.debian.org/debian stretch-backports main > /etc/apt/sources.list.d/backports.list \
&& apt-get update && apt-get install -y libgs-dev ghostscript wkhtmltopdf
&& apt-get update && apt-get install -y libgs-dev ghostscript \
&& rm -rf /var/lib/apt/lists/*
ONBUILD ARG GITLAB_LOGIN
ONBUILD ARG GITLAB_PASSWORD
ONBUILD ARG CI_COMMIT_REF_NAME
ONBUILD ARG CI_COMMIT_SHA
ONBUILD ARG CI_PROJECT_NAME
ONBUILD ENV CI_PROJECT_NAME ${CI_PROJECT_NAME}
ONBUILD ARG CI_PROJECT_NAMESPACE
ONBUILD ENV CI_PROJECT_NAMESPACE ${CI_PROJECT_NAMESPACE}
ONBUILD LABEL project=$CI_PROJECT_NAME-$CI_COMMIT_REF_NAME
ONBUILD RUN git config --global url."https://$GITLAB_LOGIN:$GITLAB_PASSWORD@code.vereign.com".insteadOf "https://code.vereign.com"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment