mirror of
https://github.com/getsops/sops.git
synced 2026-02-05 12:45:21 +01:00
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>
17 lines
334 B
Docker
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"]
|