Dockerfiles/docker-proxy/Dockerfile

14 lines
259 B
Docker
Raw Permalink Normal View History

FROM alpine:3.6
MAINTAINER Newnius <docker@newnius.com>
RUN apk add --no-cache openssh
2017-02-25 08:29:49 +00:00
RUN ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
2017-02-25 08:29:49 +00:00
RUN cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
ADD bootstrap.sh /etc/bootstrap.sh
ENTRYPOINT ["/etc/bootstrap.sh"]