mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-08-19 12:16:38 +00:00
Bumps alpine from 3.23.4 to 3.24.1. --- updated-dependencies: - dependency-name: alpine dependency-version: 3.24.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Vitor Rodrigo Vezani <vitor.vezani@fairwinds.com>
23 lines
830 B
Docker
23 lines
830 B
Docker
FROM alpine:3.24.1
|
|
|
|
LABEL org.opencontainers.image.authors="FairwindsOps, Inc." \
|
|
org.opencontainers.image.vendor="FairwindsOps, Inc." \
|
|
org.opencontainers.image.title="polaris" \
|
|
org.opencontainers.image.description="Polaris is a cli tool to help discover deprecated apiVersions in Kubernetes" \
|
|
org.opencontainers.image.documentation="https://polaris.docs.fairwinds.com/" \
|
|
org.opencontainers.image.source="https://github.com/FairwindsOps/polaris" \
|
|
org.opencontainers.image.url="https://github.com/FairwindsOps/polaris" \
|
|
org.opencontainers.image.licenses="Apache License 2.0"
|
|
|
|
WORKDIR /usr/local/bin
|
|
# Install ca-certs
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
RUN addgroup -S polaris && adduser -u 1200 -S polaris -G polaris
|
|
USER 1200
|
|
COPY polaris .
|
|
|
|
WORKDIR /opt/app
|
|
|
|
CMD ["polaris"]
|