Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: casing do not match #245

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN cabal --version \
&& cabal update

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

# LaTeX #################################################################
FROM alpine-core as alpine-latex
FROM alpine-core AS alpine-latex

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

# extra ##############################################################
FROM alpine-latex as alpine-extra
FROM alpine-latex AS alpine-extra

COPY common/extra/packages.txt /root/extra_packages.txt
COPY common/extra/requirements.txt /root/extra_requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions static/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk --no-cache add \
COPY cabal.root.config /root/.cabal/config

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

# Minimal ###############################################################
FROM scratch as static-minimal
FROM scratch AS static-minimal
ARG pandoc_version=edge
LABEL maintainer='Albert Krewinkel <[email protected]>'
LABEL org.pandoc.maintainer='Albert Krewinkel <[email protected]>'
Expand Down
6 changes: 3 additions & 3 deletions ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN cabal --version \
&& cabal update

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

# LaTeX ##############################################################
FROM ubuntu-core as ubuntu-latex
FROM ubuntu-core AS ubuntu-latex

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

# extra ##############################################################
FROM ubuntu-latex as ubuntu-extra
FROM ubuntu-latex AS ubuntu-extra

COPY common/extra/packages.txt /root/extra_packages.txt
COPY common/extra/requirements.txt /root/extra_requirements.txt
Expand Down