We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This could be mitigated by creating a traefik-whoami user in the build-stage and subsequently copy it to the last-stage, e.g.: https://github.com/030/bcbsn/blob/master/Dockerfile
The text was updated successfully, but these errors were encountered:
https://github.com/traefik/whoami/blob/master/Dockerfile
The root requirement is not related to the build stage.
Sorry, something went wrong.
# Create a minimal container to run a Golang static binary FROM scratch COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /go/whoami/whoami . ENTRYPOINT ["/whoami"] EXPOSE 80
I do not see any USER entry here, so the user is root in the traefik/whoami container.
No branches or pull requests
This could be mitigated by creating a traefik-whoami user in the build-stage and subsequently copy it to the last-stage, e.g.: https://github.com/030/bcbsn/blob/master/Dockerfile
The text was updated successfully, but these errors were encountered: