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
6 changes: 3 additions & 3 deletions server/ops/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN npm install --target_arch=$([ "$TARGETARCH" = "amd64" ] && echo "x64" || ech
RUN /usr/local/bin/pkg --targets $NODE-$TARGETOS-$([ "$TARGETARCH" = "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin

## Vega
FROM --platform=$BUILDPLATFORM ubuntu:noble AS kroki-builder-vega
FROM --platform=$BUILDPLATFORM ubuntu:resolute AS kroki-builder-vega

RUN apt-get update && apt-get install --no-install-recommends --yes \
curl \
Expand Down Expand Up @@ -90,7 +90,7 @@ RUN npm install --target_arch=$([ "$TARGETARCH" = "amd64" ] && echo "x64" || ech
RUN /usr/local/bin/pkg --targets $NODE-$TARGETOS-$([ "$TARGETARCH" = "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin

## Symbolator
FROM ubuntu:noble AS kroki-builder-static-symbolator
FROM ubuntu:resolute AS kroki-builder-static-symbolator

# Build from forked source because upstream is broken for the latest python3 versions
ARG SYMBOLATOR_VERSION=1.2.2
Expand Down Expand Up @@ -118,7 +118,7 @@ RUN python3 -m pip install --break-system-packages --upgrade ${SYMBOLATOR_SOURCE
RUN python3 -m nuitka --onefile `which symbolator` --include-module=gi.overrides.Pango --include-module=gi._gi_cairo

## Pikchr
FROM ubuntu:noble AS kroki-builder-static-pikchr
FROM ubuntu:resolute AS kroki-builder-static-pikchr

ARG PIKCHR_VERSION=85e65b968651b342c46e6334f4772b45d6cbb4317c5cbaa95d207779a50c6709

Expand Down
Loading