Merge pull request #3204 from thaJeztah/update_dockerfile_syntax

Update Dockerfiles to latest syntax, remove "experimental"
This commit is contained in:
Sebastiaan van Stijn 2021-07-22 15:02:21 +02:00 committed by GitHub
commit 62325a6abb
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"