mirror of
https://github.com/crazy-max/diun.git
synced 2025-02-09 22:11:04 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* Bump github.com/containers/image/v5 from 5.9.0 to 5.10.1 Bumps [github.com/containers/image/v5](https://github.com/containers/image) from 5.9.0 to 5.10.1. - [Release notes](https://github.com/containers/image/releases) - [Commits](https://github.com/containers/image/compare/v5.9.0...v5.10.1) Signed-off-by: dependabot[bot] <support@github.com> * Add linux-headers Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
509 B
Docker
15 lines
509 B
Docker
# syntax=docker/dockerfile:1.2
|
|
ARG GO_VERSION=1.15
|
|
|
|
FROM golang:${GO_VERSION}-alpine AS base
|
|
RUN apk add --no-cache gcc linux-headers musl-dev
|
|
WORKDIR /src
|
|
|
|
FROM golangci/golangci-lint:v1.27-alpine AS golangci-lint
|
|
|
|
FROM base AS lint
|
|
RUN --mount=type=bind,target=. \
|
|
--mount=type=cache,target=/root/.cache/go-build \
|
|
--mount=type=cache,target=/root/.cache/golangci-lint \
|
|
--mount=from=golangci-lint,source=/usr/bin/golangci-lint,target=/usr/bin/golangci-lint \
|
|
golangci-lint run --timeout 10m0s ./...
|