1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00
Files
sops/.release/alpine.Dockerfile
dependabot[bot] 5371fbd88d build(deps): Bump alpine
Bumps the docker group with 1 update in the /.release directory: alpine.


Updates `alpine` from 3.18 to 3.21

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-25 20:44:22 +01:00

14 lines
240 B
Docker

FROM alpine:3.21
RUN apk --no-cache add \
ca-certificates \
vim \
&& update-ca-certificates
ENV EDITOR vim
# Glob pattern to match the binary for the current architecture
COPY sops* /usr/local/bin/sops
ENTRYPOINT ["sops"]