-
Notifications
You must be signed in to change notification settings - Fork 0
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
ffa74a0
commit da837a0
Showing
6 changed files
with
23 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
FROM greyltc/archlinux-aur:paru AS deps | ||
WORKDIR /app | ||
|
||
RUN aur-install fontforge bdfresize xfonts-bdftopcf woff2 zip | ||
WORKDIR /app | ||
COPY . . | ||
|
||
ENV JAVA_HOME=/opt/java/openjdk | ||
COPY --from=eclipse-temurin:23-jre $JAVA_HOME $JAVA_HOME | ||
ENV PATH="${JAVA_HOME}/bin:${PATH}" | ||
|
||
|
||
FROM deps | ||
COPY . . | ||
ENTRYPOINT ["./build.sh"] | ||
FROM deps AS build | ||
|
||
RUN aur-install fontforge bdfresize xfonts-bdftopcf woff2 zip | ||
|
||
CMD ["./build.sh ${ARGS}"] | ||
|
||
|
||
FROM deps AS img | ||
|
||
RUN aur-install harfbuzz-utils | ||
|
||
CMD ["./img.sh"] |
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 |
---|---|---|
|
@@ -24,7 +24,6 @@ cp LICENSE out | |
cp AUTHORS out | ||
|
||
bnp_dep | ||
ff_dep | ||
nerd_dep | ||
|
||
cp src/kirsch.bdf out | ||
|
This file was deleted.
Oops, something went wrong.