From 021bb2616246a77ecf8e6cd698eafb70c3e8a9d3 Mon Sep 17 00:00:00 2001 From: Gosha Tcherednitchenko Date: Thu, 23 Jan 2025 16:11:32 +0000 Subject: [PATCH] feat(infra): loosen package version requirements --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d1ed69..8d7b340 100644 --- a/Dockerfile +++ b/Dockerfile @@ -79,9 +79,9 @@ FROM eclipse-temurin:17-alpine # - Curl and jq binaries for manual running of system integration scripts # check for newer package versions: https://pkgs.alpinelinux.org/ RUN apk add --no-cache \ - dumb-init~=1.2.5-r3 \ - curl~=8.11.0-r2 \ - jq~=1.7.1-r0 + dumb-init~=1.2.5 \ + curl~=8.11 \ + jq~=1.7 # Create Non-root group and user to run service securely RUN addgroup -g 1001 clojure && adduser -u 1001 -S clojure -G clojure