-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58792c3
commit 80bb7d1
Showing
7 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,15 +37,15 @@ RUN curl -LO https://github.com/mgieseki/dvisvgm/releases/download/$DVISVGM_VERS | |
make install | ||
|
||
## D2 | ||
FROM golang:1.19.3-bullseye AS kroki-builder-d2 | ||
FROM golang:1.20.3-bullseye AS kroki-builder-d2 | ||
COPY ops/docker/go.mod . | ||
|
||
RUN D2_VERSION=`cat go.mod | grep "oss.terrastruct.com/d2" | cut -d' ' -f3` && \ | ||
rm go.mod && \ | ||
go install "oss.terrastruct.com/d2@${D2_VERSION}" | ||
|
||
## Nomnoml | ||
FROM --platform=$BUILDPLATFORM node:16.18.1-bullseye-slim AS kroki-builder-nomnoml | ||
FROM --platform=$BUILDPLATFORM node:16.20.0-bullseye-slim AS kroki-builder-nomnoml | ||
|
||
RUN npm install -g [email protected] [email protected] | ||
|
||
|
@@ -60,7 +60,7 @@ RUN npm install && npm run lint | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM}-$([ "$TARGETARCH" == "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin | ||
|
||
## Vega | ||
FROM --platform=$BUILDPLATFORM node:16.18.1-bullseye-slim AS kroki-builder-vega | ||
FROM --platform=$BUILDPLATFORM node:16.20.0-bullseye-slim AS kroki-builder-vega | ||
|
||
# System dependencies for "canvas" Node package | ||
# https://github.com/Automattic/node-canvas#compiling | ||
|
@@ -88,7 +88,7 @@ RUN npm install 2 && npm run lint && npm t | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM}-$([ "$TARGETARCH" == "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin | ||
|
||
## DBML | ||
FROM --platform=$BUILDPLATFORM node:16.18.1-bullseye-slim AS kroki-builder-dbml | ||
FROM --platform=$BUILDPLATFORM node:16.20.0-bullseye-slim AS kroki-builder-dbml | ||
|
||
RUN npm config set unsafe-perm true | ||
|
||
|
@@ -105,7 +105,7 @@ RUN npm install && npm run lint | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM}-$([ "$TARGETARCH" == "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin | ||
|
||
## Wavedrom | ||
FROM --platform=$BUILDPLATFORM node:16.18.1-bullseye-slim AS kroki-builder-wavedrom | ||
FROM --platform=$BUILDPLATFORM node:16.20.0-bullseye-slim AS kroki-builder-wavedrom | ||
|
||
RUN npm install -g [email protected] [email protected] | ||
|
||
|
@@ -120,7 +120,7 @@ RUN npm install && npm run lint | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM}-$([ "$TARGETARCH" == "amd64" ] && echo "x64" || echo "$TARGETARCH") . -o app.bin | ||
|
||
## Bytefield | ||
FROM --platform=$BUILDPLATFORM node:16.18.1-bullseye-slim AS kroki-builder-bytefield | ||
FROM --platform=$BUILDPLATFORM node:16.20.0-bullseye-slim AS kroki-builder-bytefield | ||
|
||
RUN npm install -g [email protected] [email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters