Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY . /src
RUN hugo --environment ${TRAINING_HUGO_ENV} --minify

# build pdf
FROM docker.io/ubuntu:noble AS wkhtmltopdf
FROM docker.io/ubuntu:resolute AS wkhtmltopdf
RUN apt-get update \
&& apt-get install -y curl \
&& curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.jammy_amd64.deb --output wkhtmltox_0.12.6.1-2.jammy_amd64.deb \
Expand All @@ -26,7 +26,7 @@ RUN wkhtmltopdf --enable-internal-links --enable-local-file-access \
/pdf/index.html /pdf.pdf

# build static files
FROM docker.io/ubuntu:noble AS zipper
FROM docker.io/ubuntu:resolute AS zipper
RUN apt-get update && apt-get install -y zip && rm -rf /var/lib/apt/lists/*
COPY ./static-content/backstage-data /backstage-data
RUN zip -r /backstage-data.zip /backstage-data
Expand Down
Loading