Skip to content

Commit 8b861d9

Browse files
committed
Capitalize "AS" in dockerfile
1 parent 97c0d58 commit 8b861d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#############################################################################
4242
# First we prepare the image that we want, regardless of build layers.
4343
#############################################################################
44-
FROM {ARG_FROM} as base
44+
FROM {ARG_FROM} AS base
4545

4646
# When building, we can pass a unique value (e.g. `date +%s`) for this arg,
4747
# which will force a rebuild from here (by invalidating docker's cache).
@@ -72,7 +72,7 @@ RUN /stage_binaries.sh -o {ARG_STAGING} \
7272
-f /tmp
7373
RUN ln -s /bin/bash {ARG_STAGING}/bin/sh # Not sure why this is not set up automatically
7474

75-
FROM scratch as intermediate
75+
FROM scratch AS intermediate
7676

7777
# Docker doesn't do vars in COPY, so we can't use a regular ARG.
7878
COPY --from=base {ARG_STAGING} /

0 commit comments

Comments
 (0)