You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So the docker build fails as the Open Liberty image has just changed in regards to what permissions are allowed inside the container. This simple change in the dockerfile will fix the build issue:
Just add "USER root" on the second line of the dockerfile as shown below:
FROM open-liberty as server-setup
USER root
COPY /target/mym2.zip /config/
......
The text was updated successfully, but these errors were encountered:
So the docker build fails as the Open Liberty image has just changed in regards to what permissions are allowed inside the container. This simple change in the dockerfile will fix the build issue:
Just add "USER root" on the second line of the dockerfile as shown below:
FROM open-liberty as server-setup
USER root
COPY /target/mym2.zip /config/
......
The text was updated successfully, but these errors were encountered: