mirror of
https://github.com/house-of-vanity/k8s-secrets.git
synced 2026-02-04 01:37:57 +00:00
Added query params to get values in plain text
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
FROM gcr.io/distroless/cc-debian12
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY bin/linux_${TARGETARCH}/secret-reader /app/secret-reader
|
||||
|
||||
RUN chmod +x /app/secret-reader
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
USER 1000
|
||||
|
||||
ENTRYPOINT ["/app/secret-reader"]
|
||||
Reference in New Issue
Block a user