From 592353912f380a976df0007746e939a002cabae2 Mon Sep 17 00:00:00 2001 From: Matt C Date: Tue, 11 Jan 2022 11:03:46 +0000 Subject: [PATCH] Initial 1.9.2 version --- Dockerfile | 2 +- entrypoint.sh | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index af9e269..2715da8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Container image that runs your code -FROM alpine:edge +FROM alpine:3.15.0 # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh diff --git a/entrypoint.sh b/entrypoint.sh index d28107e..346b807 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -26,14 +26,12 @@ else BUILD_LATEX=0 fi -PACKAGES="doxygen graphviz ttf-freefont $4" +PACKAGES="doxygen=1.9.2-r1 graphviz ttf-freefont $4" if [ "$BUILD_LATEX" = true ] ; then PACKAGES="$PACKAGES perl build-base texlive-full biblatex ghostscript" fi apk add $PACKAGES -echo "::notice::You're on the bleeding edge of doxygen-action. To pin this version use: mattnotmitt/doxygen-action@$(doxygen --version)" - # run "regular" doxygen doxygen $1