1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00
Files
sops/.release/Dockerfile
Hidde Beydals b5b37604ac release: configure build of Docker images
GoReleaser requires specifically crafted Dockerfiles as the build
context is dynamically constructed.

For more information, refer to https://goreleaser.com/errors/docker-build/#do
and other documentation around Docker image templates and manifests.

Signed-off-by: Hidde Beydals <hidde@hhh.computer>
2023-08-14 22:37:38 +02:00

17 lines
334 B
Docker

FROM debian:bookworm-slim
RUN apt-get update && apt-get install --no-install-recommends -y \
awscli \
azure-cli \
curl \
gnupg \
vim \
&& rm -rf /var/lib/apt/lists/*
ENV EDITOR vim
# Glob pattern to match the binary for the current architecture
COPY sops* /usr/local/bin/sops
ENTRYPOINT ["sops"]