fix: remove specific jq version constraint in Dockerfile

The Docker build was failing because nginx:1-alpine might not have jq version 1.7.1-r0 available. By removing the version constraint, Alpine will install the latest compatible version available in its repositories.
This commit is contained in:
Johannes Millan 2025-06-28 13:32:11 +02:00
parent 4cca35315d
commit 578bd05077

View file

@ -37,7 +37,7 @@ ENV PORT=80
# install dependencies
RUN apk update \
&& apk add --no-cache jq=1.7.1-r0
&& apk add --no-cache jq
# copy artifact build from the 'build environment'
COPY --from=build /app/dist/browser /usr/share/nginx/html