Skip to content

Commit 0d5192f

Browse files
authored
♻️ (dockerfile): capitalize AS keyword in builder stage for consistency (#14)
The change replaces the lowercase 'as' with uppercase 'AS' in the Dockerfile's builder stage declaration. This follows Docker's convention of using uppercase for all commands and keywords, improving readability and maintaining consistency with standard Dockerfile practices.
1 parent d02ce4e commit 0d5192f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# Build stage
4-
FROM --platform=$BUILDPLATFORM golang:1.24 as builder
4+
FROM --platform=$BUILDPLATFORM golang:1.24 AS builder
55

66
ARG TARGETOS
77
ARG TARGETARCH

0 commit comments

Comments
 (0)