Skip to content

Commit

Permalink
Fix mixed case in "FROM ... AS"
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Jul 1, 2024
1 parent 517e095 commit 242e7e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions alpine/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# ==== base for all stages ====

FROM alpine:3.19 as base
FROM alpine:3.19 AS base
LABEL stage=base

LABEL maintainer="Sébastien Helleu <flashcode@flashtux.org>"
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN set -eux ; \

# ==== build ====

FROM base as build
FROM base AS build
LABEL stage=build

RUN set -eux ; \
Expand Down
4 changes: 2 additions & 2 deletions debian/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# ==== base for all stages ====

FROM debian:bookworm-slim as base
FROM debian:bookworm-slim AS base
LABEL stage=base

LABEL maintainer="Sébastien Helleu <flashcode@flashtux.org>"
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN set -eux ; \

# ==== build ====

FROM base as build
FROM base AS build
LABEL stage=build

RUN set -eux ; \
Expand Down

0 comments on commit 242e7e3

Please sign in to comment.