mirror of
https://github.com/getsops/sops.git
synced 2026-02-05 12:45:21 +01:00
This is required for the latest Azure SDK, and comes with general improvements for certain CPU types. Includes a change of `%w` -> `%v` for `t.Errorf` due to dropped support for wrapping. Signed-off-by: Hidde Beydals <hello@hidde.co>
11 lines
223 B
Docker
11 lines
223 B
Docker
FROM golang:1.18
|
|
|
|
COPY . /go/src/go.mozilla.org/sops
|
|
WORKDIR /go/src/go.mozilla.org/sops
|
|
|
|
RUN CGO_ENABLED=1 make install
|
|
RUN apt-get update
|
|
RUN apt-get install -y vim python3-pip emacs
|
|
RUN pip install awscli
|
|
ENV EDITOR vim
|