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/docker

    It 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!


Log in to reply
 

Looks like your connection to jsreport forum was lost, please wait while we try to reconnect.