jstastny-cz opened a new issue, #3775: URL: https://github.com/apache/incubator-kie-tools/issues/3775
After apache/incubator-kie-issues#321 the default user used after initial configuration is user `1000`, this blocks any extending image from being able to tweak contents of /var/www/html folder, which is copied into the image before the USER 1000 is activated. The removal might be useful to remove unnecessary samples for example by the extending image. Solution could be to actually copy the initial contents into /var/www/html and provide write access to user 1000. Possibly using: ``` COPY --chown=1000:1000 dist-dev/online-editor /var/www/html ``` Instead of a plain copy. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
