In Runner, use apt instead of apk

This commit is contained in:
hrj 2023-01-15 08:21:03 +05:30
parent 57b43e0f31
commit cda8bf6aa5
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
FROM adoptopenjdk/openjdk16:latest AS base-core
ENV JAVA_HOME="/usr/lib/jvm/default-jvm/"
RUN apk add --update ttf-dejavu
RUN apt update && apt install -y ttf-dejavu
ENV PATH=$PATH:${JAVA_HOME}/bin