File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 41
41
#############################################################################
42
42
# First we prepare the image that we want, regardless of build layers.
43
43
#############################################################################
44
- FROM {ARG_FROM} as base
44
+ FROM {ARG_FROM} AS base
45
45
46
46
# When building, we can pass a unique value (e.g. `date +%s`) for this arg,
47
47
# which will force a rebuild from here (by invalidating docker's cache).
@@ -72,7 +72,7 @@ RUN /stage_binaries.sh -o {ARG_STAGING} \
72
72
-f /tmp
73
73
RUN ln -s /bin/bash {ARG_STAGING}/bin/sh # Not sure why this is not set up automatically
74
74
75
- FROM scratch as intermediate
75
+ FROM scratch AS intermediate
76
76
77
77
# Docker doesn't do vars in COPY, so we can't use a regular ARG.
78
78
COPY --from=base {ARG_STAGING} /
You can’t perform that action at this time.
0 commit comments