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
# Build credential helper for alpine
FROM golang:1.21-alpine
RUN apk add --no-cache git make gcc musl-dev
RUN git clone https://github.com/aws/rolesanywhere-credential-helper.git
RUN cd rolesanywhere-credential-helper && make release
RUN cp rolesanywhere-credential-helper/build/bin/aws_signing_helper /usr/bin/aws_signing_helper
FROM grafana/loki:2.9.3
USER root
COPY --from=0 /usr/bin/aws_signing_helper /usr/bin/aws_signing_helper
The binary does not seem to work on alpine:
Then in the container:
The reason is thatr it's linked against libc
For my purposes i did a build in a container:
which then links against musl
but would be cooler to download the binary directly from aws
The text was updated successfully, but these errors were encountered: