Skip to content

Commit

Permalink
adoptions after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
copyrights committed Aug 20, 2023
1 parent 141e6aa commit f3db2fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

- name: Free up disk space
if: ${{ inputs.build_multiarch }}
shell: bash
Expand Down
7 changes: 5 additions & 2 deletions server/ops/docker/jdk11-jammy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# syntax=docker/dockerfile:1.4

## Kroki server
FROM maven:3.9.0-eclipse-temurin-11 as kroki-builder-server
FROM maven:3.9.3-eclipse-temurin-11 as kroki-builder-server
COPY --from=kroki-src . /kroki
WORKDIR /kroki
RUN mvn install:install-file -Dfile=./server/lib/ditaamini-1.0.3.jar -DgroupId=ditaa -DartifactId=ditaa-mini -Dversion=1.0.3 -Dpackaging=jar
RUN apt-get update \
&& apt-get install graphviz -y \
&& apt-get clean \
&& apt-get autoremove
RUN mvn --no-transfer-progress clean package

## TikZ
Expand Down

0 comments on commit f3db2fa

Please sign in to comment.