Error building docker container
-
Hello
I'm having problem building my docker container recently. I'm doing it as described here:
https://jsreport.net/learn/dockerIt worked before like a charm, but since a view days I get following error:
ERROR: unable to select packages: unable to select packages: #7 2.649 libhwy-1.0.7-r0:
I'm doing the command regarding the permission as it was described in your documentation
RUN apk add 'libhwy<=1.0.6'
&& apk update
&& apk upgrade
Do you have any idea?
Thanks for your help,
Best,
Thomas
-
You may remove that part
USER root RUN apk add 'libhwy<=1.0.6' \ && apk update \ && apk upgrade USER jsreport:jsreport # ..more steps here..
It is redundant.
-
ok thanks!