Skip to content

Commit 08b1255

Browse files
silverskyvictotarleb
authored andcommitted
fix: casing do not match
1 parent 18b76dd commit 08b1255

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

alpine/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN cabal --version \
2626
&& cabal update
2727

2828
# Builder ###############################################################
29-
FROM alpine-builder-base as alpine-builder
29+
FROM alpine-builder-base AS alpine-builder
3030
ARG pandoc_commit=main
3131
RUN git clone --branch=$pandoc_commit --depth=1 --quiet \
3232
https://github.com/jgm/pandoc /usr/src/pandoc
@@ -102,7 +102,7 @@ RUN apk --no-cache add librsvg; \
102102
apk --no-cache add rsvg-convert || true
103103

104104
# LaTeX #################################################################
105-
FROM alpine-core as alpine-latex
105+
FROM alpine-core AS alpine-latex
106106

107107
# NOTE: to maintainers, please keep this listing alphabetical.
108108
RUN apk --no-cache add \
@@ -159,7 +159,7 @@ RUN echo "binary_x86_64-linuxmusl 1" >> /root/texlive.profile \
159159
WORKDIR /data
160160

161161
# extra ##############################################################
162-
FROM alpine-latex as alpine-extra
162+
FROM alpine-latex AS alpine-extra
163163

164164
COPY common/extra/packages.txt /root/extra_packages.txt
165165
COPY common/extra/requirements.txt /root/extra_requirements.txt

static/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apk --no-cache add \
1919
COPY cabal.root.config /root/.cabal/config
2020

2121
# Builder ###############################################################
22-
FROM static-builder-base as static-builder
22+
FROM static-builder-base AS static-builder
2323
ARG pandoc_commit=main
2424
RUN git clone --branch=$pandoc_commit --depth=1 --quiet \
2525
https://github.com/jgm/pandoc /usr/src/pandoc
@@ -51,7 +51,7 @@ RUN find dist-newstyle \
5151
-exec cp '{}' /usr/local/bin/ ';'
5252

5353
# Minimal ###############################################################
54-
FROM scratch as static-minimal
54+
FROM scratch AS static-minimal
5555
ARG pandoc_version=edge
5656
LABEL maintainer='Albert Krewinkel <[email protected]>'
5757
LABEL org.pandoc.maintainer='Albert Krewinkel <[email protected]>'

ubuntu/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN cabal --version \
3030
&& cabal update
3131

3232
# Builder ###############################################################
33-
FROM ubuntu-builder-base as ubuntu-builder
33+
FROM ubuntu-builder-base AS ubuntu-builder
3434
ARG pandoc_commit=main
3535
RUN git clone --branch=$pandoc_commit --depth=1 --quiet \
3636
https://github.com/jgm/pandoc /usr/src/pandoc
@@ -113,7 +113,7 @@ RUN apt-get -q --no-allow-insecure-repositories update \
113113
&& rm -rf /var/lib/apt/lists/*
114114

115115
# LaTeX ##############################################################
116-
FROM ubuntu-core as ubuntu-latex
116+
FROM ubuntu-core AS ubuntu-latex
117117

118118
# NOTE: to maintainers, please keep this listing alphabetical.
119119
RUN apt-get -q --no-allow-insecure-repositories update \
@@ -166,7 +166,7 @@ RUN ( [ -z "$texlive_version" ] || printf '-t\n%s\n"' "$texlive_version" \
166166
WORKDIR /data
167167

168168
# extra ##############################################################
169-
FROM ubuntu-latex as ubuntu-extra
169+
FROM ubuntu-latex AS ubuntu-extra
170170

171171
COPY common/extra/packages.txt /root/extra_packages.txt
172172
COPY common/extra/requirements.txt /root/extra_requirements.txt

0 commit comments

Comments
 (0)