Skip to content
Snippets Groups Projects

Resolve "Improve pipeline speed"

Merged Ghost User requested to merge 126-improve-pipeline-speed into develop
Compare and Show latest version
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
FROM golang:1.16-alpine AS builder
#FROM golang:1.16-buster AS builder
#FROM golang:1.16-alpine AS builder
FROM golang:1.16-buster AS builder
ARG GITLAB_USER
ARG GITLAB_TOKEN
ARG BUILDARGS
#RUN apt-get update && apt-get install -y git
RUN apk add --no-cache git gcc musl-dev
RUN apt-get update && apt-get install -y git
#RUN apk add --no-cache git gcc musl-dev
RUN git config --global url."https://$GITLAB_USER:$GITLAB_TOKEN@code.fbi.h-da.de".insteadOf "https://code.fbi.h-da.de"
WORKDIR /src/gosdn
Loading