mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
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:
parent
4cca35315d
commit
578bd05077
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue