Skip to content

Commit fd69f45

Browse files
mcdonnnjjsf9k
andcommitted
Ensure FROM/AS keywords use the same casing
This resolves the following warning from Docker when building the image: FromAsCasing: 'as' and 'FROM' keywords' casing do not match Co-authored-by: Shane Frasier <[email protected]>
1 parent a1ece8f commit fd69f45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Official Docker images are in the form library/<app> while non-official
22
# images are in the form <user>/<app>.
3-
FROM docker.io/library/python:3.13.1-alpine3.20 as compile-stage
3+
FROM docker.io/library/python:3.13.1-alpine3.20 AS compile-stage
44

55
###
66
# Unprivileged user variables
@@ -53,7 +53,7 @@ RUN pipenv check --verbose \
5353

5454
# Official Docker images are in the form library/<app> while non-official
5555
# images are in the form <user>/<app>.
56-
FROM docker.io/library/python:3.13.1-alpine3.20 as build-stage
56+
FROM docker.io/library/python:3.13.1-alpine3.20 AS build-stage
5757

5858
###
5959
# For a list of pre-defined annotation keys and value types see:

0 commit comments

Comments
 (0)