Skip to content

Commit 2421a52

Browse files
authored
Change as to uppercase AS (#1)
1 parent b72eaad commit 2421a52

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11-slim as base
1+
FROM python:3.11-slim AS base
22

33
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
44

@@ -20,9 +20,9 @@ RUN \
2020
/var/lib/apt/lists/* \
2121
/usr/src/*
2222

23-
FROM base as base-amd64
24-
FROM base as base-arm64
25-
FROM base as base-armv7
23+
FROM base AS base-amd64
24+
FROM base AS base-arm64
25+
FROM base AS base-armv7
2626

2727
ENV UV_EXTRA_INDEX_URL=https://www.piwheels.org/simple
2828
ENV PIP_EXTRA_INDEX_URL=https://www.piwheels.org/simple
@@ -54,7 +54,7 @@ RUN ln -s /lib/arm-linux-gnueabihf/ld-linux-armhf.so.3 /lib/ld-linux.so.3
5454
ARG TARGETARCH
5555
ARG TARGETVARIANT
5656

57-
FROM base-${TARGETARCH}${TARGETVARIANT} as final
57+
FROM base-${TARGETARCH}${TARGETVARIANT} AS final
5858

5959
ENV UV_SYSTEM_PYTHON=true
6060

0 commit comments

Comments
 (0)