Skip to content

Commit d699b9c

Browse files
Dockerfile is updated (FROM...AS...)
This commit fixes a warning: WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line xxx)
1 parent 1734a9c commit d699b9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile--alpine.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
ARG PYTHON_VERSION
22

33
# --------------------------------------------- base1
4-
FROM python:${PYTHON_VERSION}-alpine as base1
4+
FROM python:${PYTHON_VERSION}-alpine AS base1
55

66
# --------------------------------------------- final
7-
FROM base1 as final
7+
FROM base1 AS final
88

99
RUN apk add mc
1010
RUN apk add bash

0 commit comments

Comments
 (0)