From 1038c9a1d0db387e255a7d1e307819cbf448e026 Mon Sep 17 00:00:00 2001 From: Joe Corall Date: Mon, 16 Dec 2024 10:27:36 -0500 Subject: [PATCH] fix amd64/arm64 issue with pinning curl --- examples/pandoc/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/pandoc/Dockerfile b/examples/pandoc/Dockerfile index 266876e..8b1ce67 100644 --- a/examples/pandoc/Dockerfile +++ b/examples/pandoc/Dockerfile @@ -3,9 +3,10 @@ ARG DOCKER_REPOSITORY=lehighlts FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG} AS scyllaridae FROM pandoc/latex:3.6-ubuntu AS pandoc +# hadolint ignore=DL3008 RUN apt-get update \ && apt-get install -y --no-install-recommends \ - curl=8.5.0-2ubuntu10.6 \ + curl \ bash=5.2.21-2ubuntu4 \ gosu=1.17-1ubuntu0.24.04.2 \ jq=1.7.1-3build1 \