![Rohith](/assets/img/avatar_default.png)
- changing the user runs as to vault - changing the base image to alpine:3.5 - updating the examples - changing the golang version to 1.7.5
14 lines
217 B
Docker
14 lines
217 B
Docker
FROM alpine:3.5
|
|
MAINTAINER Rohith <gambol99@gmail.com>
|
|
|
|
RUN apk update && \
|
|
apk add ca-certificates bash
|
|
|
|
RUN adduser -D vault
|
|
|
|
ADD bin/vault-sidekick /vault-sidekick
|
|
|
|
USER vault
|
|
|
|
ENTRYPOINT [ "/vault-sidekick" ]
|