-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: migrate to AS keyword usage in Dockerfiles
Fix the following Docker image build warning that stops the build: ``` 1 warning found (use docker --debug to expand): - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 3) ``` Signed-off-by: Anna Shaleva <[email protected]>
- Loading branch information
1 parent
93bc4c9
commit 045ef6a
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Builder layer | ||
FROM golang:1.23-alpine as builder | ||
FROM golang:1.23-alpine AS builder | ||
|
||
WORKDIR /bench | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters