Skip to content

Commit

Permalink
Fix warning on the Dockerfile
Browse files Browse the repository at this point in the history
This PR fixes the warning of 'FromAsCasing: 'as and FROM keywords casing do not match' when building the Dockerfile.

Signed-off-by: Gabriela Cervantes <[email protected]>
  • Loading branch information
GabyCT committed Oct 25, 2024
1 parent 40240ab commit 3b8b682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG IMG_NAME
ARG IMG_VERSION

# Build the manager binary
FROM ${IMG_NAME:-golang}:${IMG_VERSION:-1.22} as builder
FROM ${IMG_NAME:-golang}:${IMG_VERSION:-1.22} AS builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down

0 comments on commit 3b8b682

Please sign in to comment.