docker: Fix warnings

"FromAsCasing: 'as' and 'FROM' keywords' casing do not match"
This commit is contained in:
Thorben Günther 2024-11-07 14:24:33 +01:00
parent bd1abedac1
commit d25169e203
No known key found for this signature in database
GPG key ID: 415CD778D8C5AFED
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
FROM golang:alpine as build FROM golang:alpine AS build
WORKDIR /app WORKDIR /app
ARG VERSION=0.3.0 ARG VERSION=0.3.0

View file

@ -1,4 +1,4 @@
FROM golang:alpine as build FROM golang:alpine AS build
WORKDIR /app WORKDIR /app
COPY . . COPY . .