Merge pull request #3205 from thaJeztah/20.10_backport_update_dockerfile_syntax

[20.10 backport] Update Dockerfiles to latest syntax, remove "experimental"
This commit is contained in:
Silvin Lubecki 2021-07-22 15:42:42 +02:00 committed by GitHub
commit e9b8231d6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#syntax=docker/dockerfile:1.2
# syntax=docker/dockerfile:1.3
ARG BASE_VARIANT=alpine
ARG GO_VERSION=1.13.15

View File

@ -1,4 +1,5 @@
# syntax=docker/dockerfile:1.1.7-experimental
# syntax=docker/dockerfile:1.3
ARG GO_VERSION=1.13.15
FROM golang:${GO_VERSION}-alpine AS golang

View File

@ -1,4 +1,4 @@
# syntax=docker/dockerfile:1.1.3-experimental
# syntax=docker/dockerfile:1.3
ARG GO_VERSION=1.13.15
ARG GOLANGCI_LINTER_SHA="v1.21.0"