-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add image for alpine 3.20.2 with chrome 128
- Loading branch information
1 parent
a411cc0
commit 8ab58e5
Showing
3 changed files
with
42 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
FROM hexpm/elixir:1.17.2-erlang-26.2.5.2-alpine-3.20.2 | ||
|
||
USER root | ||
|
||
RUN apk update \ | ||
&& apk add --no-cache \ | ||
# Will install chromium 128.0.6613.119 & ghostscript 10.03.1 | ||
chromium \ | ||
ghostscript \ | ||
# for verapdf & ZUV | ||
openjdk11-jre \ | ||
# for pdftotext & friends | ||
poppler-utils \ | ||
# for identifying images | ||
imagemagick \ | ||
# for 'kill' | ||
procps \ | ||
# temporary for installation below | ||
wget \ | ||
unzip \ | ||
# GNU tar needed by actions/cache | ||
tar | ||
|
||
RUN mkdir /opt/verapdf | ||
WORKDIR /opt/verapdf | ||
RUN wget http://downloads.verapdf.org/rel/verapdf-installer.zip \ | ||
&& unzip verapdf-installer.zip \ | ||
&& mv verapdf-greenfield* verapdf-greenfield \ | ||
&& chmod +x verapdf-greenfield/verapdf-install | ||
COPY .github/docker/auto-install.xml /opt/verapdf/verapdf-greenfield | ||
RUN ./verapdf-greenfield/verapdf-install auto-install.xml | ||
|
||
WORKDIR /opt/zuv | ||
RUN wget https://github.com/ZUGFeRD/ZUV/releases/download/v0.8.3/ZUV-0.8.3.jar | ||
ENV ZUV_JAR /opt/zuv/ZUV-0.8.3.jar | ||
|
||
RUN apk del \ | ||
wget \ | ||
unzip \ | ||
&& rm -rf /var/lib/apt/lists/* |
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,3 +1,3 @@ | ||
# locked to the versions we use in the lint CI job | ||
elixir 1.14.5 | ||
erlang 25.3.1 | ||
erlang 26.1.2 |