-
-
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
47f5b72
commit 8112b5f
Showing
7 changed files
with
16 additions
and
16 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# syntax=docker/dockerfile:1.4 | ||
## D2 | ||
FROM golang:1.19.3-bullseye AS kroki-builder-d2 | ||
FROM golang:1.20.2-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 node:16.18.1-bullseye-slim AS kroki-builder-nomnoml | ||
FROM node:16.19.1-bullseye-slim AS kroki-builder-nomnoml | ||
|
||
RUN npm install -g [email protected] [email protected] | ||
|
||
|
@@ -24,7 +24,7 @@ RUN npm run lint | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM} . -o app.bin | ||
|
||
## Vega | ||
FROM node:16.18.1-bullseye-slim AS kroki-builder-vega | ||
FROM node:16.19.1-bullseye-slim AS kroki-builder-vega | ||
|
||
# System dependencies for "canvas" Node package | ||
# https://github.com/Automattic/node-canvas#compiling | ||
|
@@ -53,7 +53,7 @@ RUN npm run lint && npm t | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM} . -o app.bin | ||
|
||
## DBML | ||
FROM node:16.18.1-bullseye-slim AS kroki-builder-dbml | ||
FROM node:16.19.1-bullseye-slim AS kroki-builder-dbml | ||
|
||
RUN npm config set unsafe-perm true | ||
|
||
|
@@ -71,7 +71,7 @@ RUN npm run lint | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM} . -o app.bin | ||
|
||
## Wavedrom | ||
FROM node:16.18.1-bullseye-slim AS kroki-builder-wavedrom | ||
FROM node:16.19.1-bullseye-slim AS kroki-builder-wavedrom | ||
|
||
RUN npm install -g [email protected] [email protected] | ||
|
||
|
@@ -87,7 +87,7 @@ RUN npm run lint | |
RUN /usr/local/bin/pkg --targets ${NODE}-${PLATFORM} . -o app.bin | ||
|
||
## Bytefield | ||
FROM node:16.18.1-bullseye-slim AS kroki-builder-bytefield | ||
FROM node:16.19.1-bullseye-slim AS kroki-builder-bytefield | ||
|
||
RUN npm install -g [email protected] [email protected] | ||
|
||
|
@@ -144,7 +144,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 rust:1.65-slim-bullseye AS kroki-builder-static-svgbob | ||
FROM rust:1.68-slim-bullseye AS kroki-builder-static-svgbob | ||
RUN rustup target add x86_64-unknown-linux-musl | ||
COPY ops/docker/Cargo.toml . | ||
|
||
|
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