mirror of
https://github.com/ssh-vault/ssh-vault.git
synced 2026-01-12 10:43:12 +03:00
13 lines
200 B
Docker
13 lines
200 B
Docker
FROM golang:1.9
|
|
|
|
WORKDIR /go/src/github.com/ssh-vault/ssh-vault
|
|
copy . .
|
|
|
|
ENV GOPATH /go
|
|
ENV GOROOT /usr/local/go
|
|
ENV PATH /usr/local/go/bin:/go/bin:/usr/local/bin:$PATH
|
|
|
|
RUN make test
|
|
|
|
CMD /bin/bash
|