1054d157bf
GCS storage driver used to be conditionally built due to its being outdated and basically unmaintained. Recently the driver has gone through a rework and updates. Let's remove the build tag so we have less headaches dealing with it and try keeping it up to date. Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
19 lines
578 B
Docker
19 lines
578 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
ARG GO_VERSION=1.20.12
|
|
ARG ALPINE_VERSION=3.18
|
|
ARG GOLANGCI_LINT_VERSION=v1.55.2
|
|
ARG BUILDTAGS=""
|
|
|
|
FROM golangci/golangci-lint:${GOLANGCI_LINT_VERSION}-alpine AS golangci-lint
|
|
|
|
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base
|
|
RUN apk add --no-cache gcc musl-dev
|
|
WORKDIR /src
|
|
|
|
FROM base
|
|
ENV GOFLAGS="-buildvcs=false"
|
|
RUN --mount=type=bind,target=. \
|
|
--mount=type=cache,target=/root/.cache \
|
|
--mount=from=golangci-lint,source=/usr/bin/golangci-lint,target=/usr/bin/golangci-lint \
|
|
golangci-lint --build-tags "${BUILDTAGS}" run
|