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

chore(deps): update docker images #1727

Merged
merged 1 commit into from
Mar 31, 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
2 changes: 1 addition & 1 deletion bpmn/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11-alpine3.18
FROM node:20.12-alpine3.18

RUN addgroup -g 1001 kroki && adduser -D -G kroki -u 1001 kroki

Expand Down
2 changes: 1 addition & 1 deletion diagrams.net/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11-alpine3.18
FROM node:20.12-alpine3.18

RUN addgroup -g 1001 kroki && adduser -D -G kroki -u 1001 kroki

Expand Down
2 changes: 1 addition & 1 deletion excalidraw/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11-alpine3.18
FROM node:20.12-alpine3.18

RUN addgroup -g 1001 kroki && adduser -D -G kroki -u 1001 kroki

Expand Down
2 changes: 1 addition & 1 deletion mermaid/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11-alpine3.18
FROM node:20.12-alpine3.18

RUN addgroup -g 1001 kroki && adduser -D -G kroki -u 1001 kroki

Expand Down
12 changes: 6 additions & 6 deletions server/ops/docker/jdk17-jammy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN curl -LO https://github.com/mgieseki/dvisvgm/releases/download/$DVISVGM_VERS
make install

## Nomnoml
FROM --platform=$BUILDPLATFORM node:18.19-bullseye-slim AS kroki-builder-nomnoml
FROM --platform=$BUILDPLATFORM node:18.20-bullseye-slim AS kroki-builder-nomnoml

RUN npm install -g [email protected] [email protected]

Expand All @@ -53,7 +53,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 node:18.19-bullseye-slim AS kroki-builder-vega
FROM --platform=$BUILDPLATFORM node:18.20-bullseye-slim AS kroki-builder-vega

# System dependencies for "canvas" Node package
# https://github.com/Automattic/node-canvas#compiling
Expand Down Expand Up @@ -82,7 +82,7 @@ RUN npm install 2 --target_arch=$([ "$TARGETARCH" = "amd64" ] && echo "x64" || e
RUN /usr/local/bin/pkg --targets $NODE-$TARGETOS-$([ "$TARGETARCH" = "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin

## DBML
FROM --platform=$BUILDPLATFORM node:18.19-bullseye-slim AS kroki-builder-dbml
FROM --platform=$BUILDPLATFORM node:18.20-bullseye-slim AS kroki-builder-dbml

RUN npm install -g [email protected] [email protected]

Expand All @@ -98,7 +98,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

## Wavedrom
FROM --platform=$BUILDPLATFORM node:18.19-bullseye-slim AS kroki-builder-wavedrom
FROM --platform=$BUILDPLATFORM node:18.20-bullseye-slim AS kroki-builder-wavedrom

RUN npm install -g [email protected] [email protected]

Expand All @@ -114,7 +114,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

## Bytefield
FROM --platform=$BUILDPLATFORM node:18.19-bullseye-slim AS kroki-builder-bytefield
FROM --platform=$BUILDPLATFORM node:18.20-bullseye-slim AS kroki-builder-bytefield

RUN npm install -g [email protected] [email protected]

Expand Down Expand Up @@ -201,7 +201,7 @@ RUN wget -q "https://pikchr.org/home/raw/${PIKCHR_VERSION}" -O pikchr.c
RUN gcc -O0 -g -static -Wall -Wextra -DPIKCHR_SHELL pikchr.c -o pikchr -lm

## SVGBob
FROM --platform=$BUILDPLATFORM rust:1.76-slim-bullseye AS kroki-builder-static-svgbob
FROM --platform=$BUILDPLATFORM rust:1.77-slim-bullseye AS kroki-builder-static-svgbob

# Install cross-compilation tools
RUN apt-get update && apt-get install --no-install-recommends --yes \
Expand Down
Loading