1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00
Files
sops/Dockerfile
Calle Pettersson 9493015577 Fix typo in Dockerfile
`s/CGO_ENALBED/CGO_ENABLED/`
2018-06-25 15:41:52 +02:00

11 lines
244 B
Docker

FROM golang:1.8
COPY . /go/src/go.mozilla.org/sops
WORKDIR /go/src/go.mozilla.org/sops
RUN CGO_ENABLED=1 go build -a -o /bin/sops ./cmd/sops
RUN apt-get update
RUN apt-get install -y vim python-pip emacs
RUN pip install awscli
ENV EDITOR vim